Tag Archives: wordpress

How to Show Sidebar in Single Post Page Twenty Eleven WP Theme

How to Show Sidebar on Twenty Eleven Theme Twenty Eleven theme is a good nice looking theme. It’s a default theme for WordPress version 3.0 and above. I use it for my Bahasa Indonesia’s Kumpulan Buku A. Fatih Syuhud. The minus point of this theme is the sidebar not showing on a page or a single post. So, what you put on these single post or  pages will not show to the reader who come from Google search which is directed to the single post or page.
Continue reading

How to Remove Links from Post Title

wordpress post link removeSome people say that having a post title which has link to itself is not good from SEO perspective. If you concur with this statement, here’s how to remove the link from the post title only.

1. Login to your self-hosted WordPress blog -> Appearance -> Editor

2. Click Single.php and find this code:

<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>

3. Delete and replace it with this code:
<?php the_title(); ?>

4. Click Update File. Done.