If you want to change default wordpress logo on the wp-login.php page then you can change wordpress logo by your logo by just adding following lines in your theme’s function php files.
If you want to change default wordpress logo on the wp-login.php page then you can change wordpress logo by your logo by just adding following lines in your theme’s function php files.
Using following code you can apply two colors alternatively to the page links. just edit the colors to apply different styles.
Following code is used to create authors page link without displaying the author name publicly. You have to use this code inside wordpress the_loop. <?php $user_info = get_the_author_meta(‘user_nicename’,$post->post_author); $author_url=get_author_posts_url($post->post_author,$user_info); ?> <p><a href="<?php echo $author_url; ?>" title="View All posts By this author">View All posts By this author</a></p>
In this post i included all the latest wordpress tutorials and hacks. With latest wordpress 3.0 . 1. How to create a built-in contact form for your WordPress theme. Many WordPress plugins can add a contact form to your blog, but a plugin is not necessary. In this tutorial, I’m going to show you how [...]