Created
March 12, 2015 20:24
-
-
Save anonymous/8bd60d3273ca85cffa27 to your computer and use it in GitHub Desktop.
Genesis Custom Page Template showing related posts by tag
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
template name: Fells | |
*/ | |
/** Code for custom loop */ | |
function my_custom_loop() { | |
$tags = wp_get_post_tags($post->ID); | |
if ($tags) { | |
$tag_ids = array(); | |
foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id; | |
echo 'Related Posts'; | |
$args=array( | |
'tag__in' => $tag_ids, | |
'post__not_in' => array($post->ID), | |
'showposts'=>5, | |
'ignore_sticky_posts'=>1 | |
); | |
$my_query = new WP_Query($args); | |
if( $my_query->have_posts() ) { | |
while ($my_query->have_posts()) : $my_query->the_post(); ?> | |
<p><a href="<?php the_permalink() ?>" rel="bookmark" title=" | |
<?php the_title_attribute(); ?>"> | |
<?php the_title(); ?></a></p> | |
<?php | |
endwhile; | |
} | |
} | |
} | |
/** Replace the standard loop with our custom loop */ | |
add_action( 'genesis_loop', 'my_custom_loop' ); | |
genesis(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A few issues I see:
a) Add
global $post;
at the top of your function (before $tags).b) Replace all the $post->ID with get_the_ID(). This is the method I usually use so I don't have to worry about whether global $post has been stated yet.
remove_action( 'genesis_loop', 'genesis_do_loop' );
Here's what it would look like if I did it: https://gist.github.com/billerickson/67cf0c77a74f409da652
In addition to fixing the above issues, I cleaned up the code a bit using WP coding standards.