Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在custom_functions.php 中设置了一个自定义循环。循环的基本思想是这样的
function category() { if (is_category(3557)) { News Category content } else{ Main categories content } }
这适用于所有主要类别,但在新闻页面上,我显示的是新闻内容,然后是主要网站内容。
我意识到出了什么问题 - 我正在使用 Thesis 主题,而我找到的关于如何启动自定义循环的示例有
else thesis_loop::category();
在最后。但是,一旦我添加了实际内容来覆盖默认循环,我只需要为 else 语句添加括号,所以它变成了
else { Main category content }