How to Change WordPress Login Logo, Login Header Url & Login Header Title? Copy this code and paste into your theme file functions.php
<?php
function custom_login_logo()
{
echo '<style type="text/css">'.
'h1 a { background-image:url(http://www.google.co.id/images/srpr/logo3w.png) !important;}'.
'</style>';
}
add_action('login_head', 'custom_login_logo');
function update_wp_login_url()
{
return 'http://www.wp-magz.com';
}
function update_wp_login_title()
{
return 'WordPress Magazine';
}
add_filter('login_headerurl', 'update_wp_login_url');
add_filter('login_headertitle', 'update_wp_login_title');
?>

Wordpress SEO
Here is the list of top 5 WordPress SEO plugin which will resolve your SEO issue and boost your blog/website traffic!
- SEO Auto Links & Related Posts
is a combination of related posts and auto smart links plugin. The auto links feature will automatically convert post title, meta keywords, and post tags found inside the blog posts into an internal link. visit seo-alrp
- SEO SearchTerms Tagging 2
This is the plugin you need to multiply your blog traffic in algorithmic scale. With displaying incoming search terms linked to your blog posts from single post and side wide sidebar, you will strengthen the on page SEO of your web site, therefore your SERP will be better than before. Visit STT2 [click to continue...]
If you have a more tag and a comments link on every post, and of course a post title, you have three different links pointing to the same page. This can affect your rankings negatively (again, because Google may think these links point to different pages).
To remove the “#more” text from your ‘Read More’ link, replace the following line in your wp-includes/post-template.php
$output .= ' <a href="'. get_permalink()
. "#more-$id\">$more_link_text</a>";
with
$output .= ' <a href="'. get_permalink()
."\">$more_link_text</a>";
1. Create .htaccess
Contoh dibawah jika anda menggunakan permalink yang sudah di modif
<IfModule mod_rewrite.c>
RewriteEngine On
php_flag register_globals off
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
<Files wp-config.php>
Order Deny,Allow
Deny from All
</Files>
2. Create Robots.txt
User-agent: *
Allow: /
Disallow: /wp-admin/
Disallow: /wp-includes/
Disallow: /wp-content/
3. Create file index.html
Create file index.html kosong di plugin folder wp-content/plugins/index.html [click to continue...]
Secara default wordpress menambah automatis meta generator dengan content biasanya diisi dengan string versi wordpress yang digunakan
<meta name="generator" content="WordPress 2.5.1" />
Untuk menghapusnya, silahkan edit file functions.php theme anda yang berada di wp-content/theme/theme-aktif, dan tambah dengan baris berikut
remove_action('wp_head', 'wp_generator');