Forums
Forums / Fixing WordPress / Post tag list
(@cadeath)
14 years, 8 months ago
Good Day,
I would like to ask, how to post the tag list. All that I tag in the word
apple
.
where the list displays only Title and Content before MORE…
Thank you, I am having problem is search, it is seems I can’t find the right solution…
Sorry
(@alchymyth)
I would like to ask, how to post the tag list.
in the loop of the front page (index.php ?) or single posts (single.php) add <?php the_tags(); ?> http://codex.wordpress.org/Function_Reference/the_tags
<?php the_tags(); ?>
create a template tag.php http://codex.wordpress.org/Tag_Templates possibly starting with a copy of index.php (this depends on the structure of your theme); then make sure to have the_content('read more'); http://codex.wordpress.org/Function_Reference/the_content within the loop http://codex.wordpress.org/The_Loop
the_content('read more');
for more detailed suggestions, please post more information such as the name of your existing theme and a link to your site.
Thanks for the links. All I want is like this.
I will post an article about apple. Below are the list of articles that have APPLE as tag.
14 years, 7 months ago
Resolved
$tag = "apple"; $sql = 'tag=' . $tag .'&post_status=publish' . '&posts_per_page=0'; query_posts( $sql );
I used query_posts to list down all the articles that has an APPLE tag…
The topic ‘Post tag list’ is closed to new replies.