我在这里有我们的投资组合页面:http://www.slarc.com/portfolio-view/central-control-building-east-texas/
项目标题下方的橙色链接手动插入到页面内容中。有没有一种方法可以调用一个帖子类别来自动执行此操作?
我使用的模板在WP帖子下没有我们的投资组合帖子。它位于一个名为“公文包”的自定义帖子类型下。
我已收到以下代码。但我不知道如何将其添加到我的页面。当我尝试下面页面上的所有内容时,PHP代码消失了。
<?php
$args = array(
\'type\' => \'post\',
\'child_of\' => 0,
\'parent\' => \'\',
\'orderby\' => \'name\',
\'order\' => \'ASC\',
\'hide_empty\' => 1,
\'hierarchical\' => 1,
\'exclude\' => \'\',
\'include\' => \'\',
\'number\' => \'\',
\'taxonomy\' => \'your_custom_taxonomy\',
\'pad_counts\' => false );
$categories = get_categories($args);
echo \'<ul>\';
foreach ($categories as $category) {
$url = get_term_link($category);?>
<li><a href="<?php echo $url;?>"><?php echo $category->name; ?></a></li>
<?php
}
echo \'</ul>\';
?>
谢谢,洛恩