CaDeAtH
Member
Posted 7 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
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
where the list displays only Title and Content before MORE...
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
for more detailed suggestions, please post more information such as the name of your existing theme and a link to your site.
CaDeAtH
Member
Posted 7 months ago #
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.
CaDeAtH
Member
Posted 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...