嗨,我一直在尝试根据所附图片添加类别链接。在我的横幅下方有“音乐”、“思想”、“产品”等类别。但我不知道怎么做。有没有快速的方法可以做到这一点?
https://thefussy.co/ 和https://thefussy.co/category/thefword/ 是我希望分类显示的链接,以及来自/来自音乐、思想和产品的所有子分类。我试过编辑类别。php文件,但我似乎无法显示类别。我做错什么了吗?
<?php if ( is_home ) : ?>
<div class="category-list-home">
<ul>
<?php
$args = array(
\'show_option_all\' => \'\',
\'orderby\' => \'name\',
\'order\' => \'ASC\',
\'style\' => \'list\',
\'show_count\' => 0,
\'hide_empty\' => 1,
\'child_of\' => 14,
\'exclude\' => \'\',
\'exclude_tree\' => \'\',
\'include\' => \'\',
\'number\' => null,
\'echo\' => 1,
\'current_category\' => 0,
\'taxonomy\' => \'category\',
);
wp_list_categories( $args );
?>
</ul>
</div>
<?php endif; ?>
我尝试将上述代码放在我的\\u索引下。php文件。。这是显示一个小css的罚款,我可以使它成为我想要的样子。但我似乎无法在其他子类别页面上显示类别,如音乐、产品或想法。
地点:弗西。co公司