How can I add code for rich snippets? When my site shows up in search queries it looks like this:

How do you recommend I change this?
Thanks,
Garrett
How can I add code for rich snippets? When my site shows up in search queries it looks like this:

How do you recommend I change this?
Thanks,
Garrett
The best solution would be to use a seo plugin like: http://wordpress.org/extend/plugins/wordpress-seo/ - these plugins will add a seo meta description option to your post/page editor page and some of them even show you a live preview of your description text.
Thanks. How can I change the space between posts on the blog? As it is now I have to put blank lines at the end of posts in order to get room between posts. Is there code I can change to space the posts out on the blog feed?
Hi garrettdanielson,
You can do a couple of things, the easiest would be to re-enable the hr code by removing:
.hr {
display: none;
}
This is what the theme uses to put space in between content. Additionally, you can re-enable it just for that page and also hide the image it uses (the lightning bolt) with the following:
#top.page-id-201 .hr {
display: block;
background-image: none;
}
Regards,
Devin
Awesome, thanks Devin!
One more thing:
How can I display the name of blog authors next to the title of posts?
Thanks,
Garrett
In includes/loop-index.php replace following code:
</span><!-- end date -->
<span class='text-sep'>/</span>
with:
</span><!-- end date -->
<span class='text-sep'>/</span>
<span class="author">
<?php echo 'By '.get_the_author(); ?>
</span><!-- end author -->
<span class='text-sep'>/</span>
`
Perfect! The author shows up now, is there any way to control the spacing between "By ___" and the category? See what I mean at http://www.pinebrand.com/blog.
Thanks!
Garrett
Hi,
Just add this on your custom.css
.author {
margin-left: 10px;
}
Regards,
Ismael
Awesome, thank you all for your help!
This topic has been closed to new replies.