0

我尝试仅在作者页面中显示来自特定类别的帖子,使用如下代码中的 get_option 函数,但它不起作用:

<?php query_posts('cat='.get_option('admin_cat')); ?>

但是,如果使用 id 号,则效果很好。

<?php query_posts( 'cat=6' ); ?> 

如何使用 get_option 函数代替 ID 号?

稍后编辑:我很抱歉,我在管理选项中写了类别名称而不是它的 ID 是我的错误。但是,代码有助于阅读这两种变体,例如:

if admin option the category is an id
display its id
if in admin option category is a name
display its name

谢谢

4

0 回答 0