Then tutorials in de link Is Not working and its with tumbnails immidiatle i past the code they gived me, then when i click on my post it will display blank page untill i remove the code and i paste it in my *content-default.php*
<divclass="relatedposts">
<h3>Related posts</h3>
<?php
$orig_post =$post;
global $post;
$tags = wp_get_post_tags($post->ID);
if ($tags) {
$tag_ids =array();
foreach ($tagsas$individual_tag)$tag_ids[] =$individual_tag->term_id;
$args =array(
'tag__in' =>$tag_ids,
'post__not_in' =>array($post->ID),
'posts_per_page' =>4,// Number of related posts to display.
'caller_get_posts' =>1
);
$my_query =newwp_query($args);
while ($my_query->have_posts() ) {
$my_query ->the_post();
?>
<div class="relatedthumb">
<a rel= "external"href="<? the_permalink()?>"><?php the_post_thumbnail(array(150,100)); ?><br />
<?php the_title(); ?>
</a>
</div>
<? }
}
$post =$orig_post;
wp_reset_query();
?>
</div>
Copy code or what of the one in dis page
http://unlimitedapps.net/music-illbliss-fireworks-prod-kezyklef/
(Edited by 2017-03-19 02:14 Keyarn )