How to display tags with post_content
I have this code to display the content of a specific post outside the loop (actually in the archive.php template file). How do I include the tags?
?php
$my_id = 1576;
$post_id_1576= get_post($my_id);
$content = $post_id_1576-post_content;
$content = apply_filters('the_content', $content);
$content = str_replace(']]', ']]', $content);
echo $content;
?
Topic post-content tags Wordpress
Category Web