后元数据作者和特定类别的日期

时间:2017-08-03 10:48:38

标签: wordpress posts

我希望只显示类似作者的meta-meta和特定类别的日期,比如我有3种类别的博客,新闻,评论,现在删除类似作者的后期元和来自博客和新闻类别帖子的发布日期。

2 个答案:

答案 0 :(得分:0)

你必须使用wordpress neat函数is_category(),你需要提供的参数是你的博客,新闻,评论

现在,例如,如果您想要在单个页面中显示来自这些类别的帖子只需要显示,那么您必须拥有这三个类别ID,并且您可以应用

等条件
if(is_category('1','2','3')){
//your codes here
}

参考此

https://developer.wordpress.org/reference/functions/is_category/

答案 1 :(得分:0)

创建新的自定义类别模板。

1. Inside you theme folder duplicate the category.php file.
2. Rename the duplicated copy to something like category-news or category-23(whatever you prefer which must match with the category slug or ID respectively).
3. then change the content of that file.

每当您导航到该类别(slug = news或id = 23)时,wordpress会自动查找与目标类别页面匹配的类别模板(slug或Id)(category-news.php或category-23.php)文件)如果找不到该文件,则移动到category.php。