anointed

anointed

6p

4 comments posted · 0 followers · following 0

15 years ago @ Jerry Gaffney Ministries - May 17th 2010 · 0 replies · +1 points

This was actually a really great sermon. I thoroughly enjoyed listening to it.

16 years ago @ Jerry Gaffney Ministries - test sermon 2 · 0 replies · +1 points

testing a comment on a custom post type sermon

16 years ago @ Shawns Thoughts - Related posts by tags · 0 replies · +1 points

This can further be optimized by using the ‘fields’ arg for the wp_get_post_tags() function so the for loop becomes obsolete like so:

$tags = wp_get_post_tags($post->ID, array('fields'=>'ids'));
if ($tags) {
$args=array(
'tag__in' => $tags,
'post__not_in' => array($post->ID),
'showposts'=>5,
'caller_get_posts'=>1
);
$my_query = new WP_Query($args);

16 years ago @ Shawns Thoughts - Get Custom Field Values · 0 replies · +1 points

Now this plugin is going to come in really handy. It's almost exactly what I have been looking for.