Name Update Time
Netflix September 18, 2024 9:50 am
Disney+ September 18, 2024 10:03 am
Max September 18, 2024 2:46 pm
ChatGPT 4 September 14, 2024 2:26 pm
Spotify September 18, 2024 2:50 pm
Prime Video September 18, 2024 3:00 pm
Codecademy September 18, 2024 2:54 pm
Grammarly September 14, 2024 4:45 pm
Canva Pro September 18, 2024 4:38 pm
Udemy Premium Cookies September 2, 2024 2:53 pm

<ul id=”tags_related”>
<?php
global $post;
$post_tags = wp_get_post_tags($post->ID);
if ($post_tags) {
foreach ($post_tags as $tag) {

$tag_list[] .= $tag->term_id;
}

$post_tag = $tag_list[ mt_rand(0, count($tag_list) – 1) ];

$args = array(
‘tag__in’ => array($post_tag),
‘category__not_in’ => array(NULL),
‘post__not_in’ => array($post->ID),
‘showposts’ => 6,

‘caller_get_posts’ => 1
);
query_posts($args);

if (have_posts()) {
while (have_posts()) {
the_post(); update_post_caches($posts); ?>
<li>* <a href=”<?php the_permalink(); ?>” rel=”bookmark” title=”<?php the_title_attribute(); ?>”><?php the_title(); ?></a></li>
<?php
}
}
else {
echo ‘<li>* Nothing</li>’;
}
wp_reset_query();
}
else {
echo ‘<li>*Nothing</li>’;
}
?>
</ul>