Archive

Posts Tagged ‘Tutorials’

Recover WordPress Password When You Have Forgotten It

August 7, 2011 Leave a comment

Did you forgot your WordPress blog admin password? No problem! it is not so complex to retrieve admin password.

How-to-add-page-numbers-in-wordpress-blog

August 7, 2011 4 comments

pagenavi plugin configuration

By default, WordPress has functions to display links to previous and next pages. This is better than nothing, but I don’t understand why the folks at WordPress don’t build a pagenevi by default. But here is a plugin to display page numbers.

// //

Configuration:——–

Read more…

First Steps With WordPress

August 7, 2011 10 comments

Now What?

You’ve just completed the famous  5 Minute Installation of WordPress without stress or fuss.  WordPress is packed with many amazing features.  So now that you’ve got it installed, what should you do?

Let’s take a step-by-step tour through your WordPress site and learn about how all the different functions work and how to make your new site your own.

During the first part of this tutorial, we ask that you don’t change anything within the program, unless it is part of the tutorial.  Just follow these simple steps and soon you will be changing everything.

More Details

Read more…

How to Display a Read More link in WordPress Excerpts

August 7, 2011 Leave a comment

To prevent duplicate content, improve site load time, and for better SEO many bloggers have started to use post excerpts. Excerpts are mini-descriptions of the posts shown on the main blog page, category pages, and archive pages. You can see a live example by visiting any of our categories. But if you notice, our read more button is added on a separate line from the excerpt text. In this article, we will show you how to automatically add a read more link in WordPress Excerpts.

First open your functions.php file, and paste the following code inside the php tags:

 // Changing excerpt more
    function new_excerpt_more($more) {
    global $post;
    return '… <a href="'. get_permalink($post->ID) . '">' . 'Read More &raquo;' . '</a>';
    }
    add_filter('excerpt_more', 'new_excerpt_more');

Read more…