Filed in: Tips & Tricks, Wordpress
Home Wordpress
Add code to your header:
<div id=”links_bar”>
<ul>
<li><a href=”/<?php echo get_option(‘home’); ?>/”>Home</a></li>
<?php wp_list_pages(‘title_li=’ ); ?>
</ul>
</div>
add this code to to style.css
/* Menus drop-down */
#links_bar {
width:...
A great way to ensure your theme is as SEO ready as possible is to remove the default <title> tag found in your themes header.php file and replace it with the codes below. It will give your theme’s titles a bit more juice and help the SEO efforts that your themes users will want to put into practice – all without requiring them to touch...
Filed in: Wordpress
Highlight author comments in WordPress
A while ago I was looking around for how to make my own comments a different color on my blog. Most of the advice was along the lines of “Add code to check if the commenter’s email is the same as the email address of the blog’s author.” Can you spot the flaw in that logic? If a commenter knows the email...
Filed in: Wordpress
A stitch in time saves nine. I couldn’t sew my way out of a bag, but it’s true advice for bloggers as well — a little bit of work on an upgrade now saves a lot of work fixing something later.
Right now there is a worm making its way around old, unpatched versions of WordPress. This particular worm, like many before it, is clever: it registers...
Filed in: Wordpress




