最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How to show 'tags' in 'Wordpress Pages' [not Posts]

programmeradmin3浏览0评论

I have found a way to have the ‘category’ the page is recorded against to display at the top of the ‘page’ (this is not a post but a WordPress ‘page’).

I would also like to display the ‘tags’ that have been recorded against this page but haven’t been able to find a way to achieve this – all the search results talk about are ‘removing tags from posts’ or getting ‘pages of tags’. These results make my ability to select the correct Google search to get my answer frustrating!

To get the category of the page to show I added the following to my ‘functions.php’ in my child theme directory:

add_filter('twentytwenty_show_categories_in_entry_header', '__return_true');

Is there an equivalent piece of code I can use to display the tags assigned to this page also?

Many thanks for all help provided,

Richard

I have found a way to have the ‘category’ the page is recorded against to display at the top of the ‘page’ (this is not a post but a WordPress ‘page’).

I would also like to display the ‘tags’ that have been recorded against this page but haven’t been able to find a way to achieve this – all the search results talk about are ‘removing tags from posts’ or getting ‘pages of tags’. These results make my ability to select the correct Google search to get my answer frustrating!

To get the category of the page to show I added the following to my ‘functions.php’ in my child theme directory:

add_filter('twentytwenty_show_categories_in_entry_header', '__return_true');

Is there an equivalent piece of code I can use to display the tags assigned to this page also?

Many thanks for all help provided,

Richard

Share Improve this question asked Oct 4, 2020 at 8:16 AvocationAvocation 1
Add a comment  | 

1 Answer 1

Reset to default 1

enter your tags instead of the specified ones or delete the extra ones:

function wps_display_custom_tags ($post_meta) {
  // delete meta tags you do not want to display
  return array( 'author', 'post-date', 'comments', 'sticky', 'tags');
}
add_filter('twentytwenty_post_meta_location_single_top', 'wps_display_custom_tags');
发布评论

评论列表(0)

  1. 暂无评论