Home › Forums › Pro Support › Taxonomie Category and display Post_tag Tagged: Category, home, post_tag This topic has 5 replies, 2 voices, and was last updated 1 year, 7 months ago by Tom. Viewing 6 posts - 1 through 6 (of 6 total) Author Posts July 3, 2019 at 6:50 am #10138 UweParticipant Hi, have listed on the home page the posts by category “Top News”. Is it possible only on the start page under the heading in addition to the “Post Tags” display. The tags are displayed for the individual contributions and in the archive. I tried it like this: .home .wp-show-posts .wp-show-posts-entry-meta .post_tags { text-align: center; } For help, I would be grateful … July 3, 2019 at 9:13 pm #10146 TomKeymaster Hi there, I’m not too sure what you mean – can you explain a bit more? Let me know 🙂 July 3, 2019 at 10:22 pm #10148 UweParticipant Hi Tom, an example: The post is called “USA against Netherlands in the Women´s World Cup final” and is in the category “Sports”. The post tag is “Soccer”. On the start page the article should be displayed the title with the post tag like this: USA against Netherlands in the Women´s World Cup final Soccer So I do not want to show the category under the title but the Tag. Thanks for your answer … July 4, 2019 at 6:19 pm #10165 TomKeymaster Ah, try this: add_action( 'wpsp_before_content', function( $settings ) { if ( 123 === $settings['list_id'] ) { $tags = get_the_tag_list( '',', ' ); if ( $tags ) { echo '<div class="wp-show-posts-entry-meta">' . $tags . '</div>'; } } } ); The only thing you need to change is the 123, which you’ll want to change to the ID of the list you’re targeting. July 9, 2019 at 11:02 pm #10237 UweParticipant Hi Tom, perfect … Thanks so much! July 11, 2019 at 9:07 pm #10274 TomKeymaster You’re welcome 🙂 Author Posts Viewing 6 posts - 1 through 6 (of 6 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In