Wordpress is a simple CMS(Content Management System) which can be used as a blog page.
- change theme from database
change
template,stylesheetandcurrent_themerows underwp_optionstable(a key-value option table). Note: change their value todefaultto restore previous state. Refer here or here if you want more detail info.
wp-contents--plugins, themes, uploaded fileswp-admin--admin tools, it also acts as a sandbox to fix problems in case we mess things upwp-includes--assets. e.g. you can file version info about wordpress underwp-includes/version.php
/wp-admin/upgrade.php--upgrade wordpress while preserving data/wp-admin/install.php--install wordpress/wp-admin/--access to admin panel/wp-login.php--login to wordpress
- reinstall wordpress without losing data
- fix blank site problem in wordpress
- difference between posts and pages
- wordpress-3-8-for-sae-v1217
- wordpress-3-9-for-sae-v0421
- wordpress-4-1-for-sae-and-bae
- wordpress-4-1-for-sae-download
- wordpress-4-1-on-sae-install-tutorial
by default, SAE has Anti Leech feature enabled. Add your site domain name to the whitelist of SAE Storage Service to avoid
403 forbiddenor401 unauthorizederrors.
Use All in one Favicon Plugin. For MORE.
add the following code to functions.php to your theme.
/**
* Remove Wordpress Logo
*/
add_action( 'admin_bar_menu', 'remove_wp_logo', 999 );
function remove_wp_logo( $wp_admin_bar ) {
$wp_admin_bar->remove_node( 'wp-logo' );
}Delete <? php comments_template(); ?> in page.php and so on.