我有以下代码:
javax.net.ssl.SSLHandshakeException:
sun.security.validator.ValidatorException: PKIX path building failed:
sun.security.provider.certpath.SunCertPathBuilderException: unable to
find valid certification path to requested target
我在分类档案页面上使用taxonomy-project_categories.php来显示类别链接列表。
行:<div class="container cat-list-container">
<ul>
<?php wp_list_categories( array(
'taxonomy' => 'project_categories',
'orderby' => 'id',
'hide_empty' => true,
'show_option_all' => 'All',
'title_li' => false
) ); ?>
</ul>
</div>
在列表的开头添加一个名为&#39; All&#39;的链接。
然而,当点击时,该链接将用户带到网站的主页,而不是回到主要&#39; Projects&#39;页。
这个&#39; All&#39;链接在标准帖子中使用此代码时有效,但在使用自定义分类法时似乎无法正常工作...
有人可以帮忙吗?
答案 0 :(得分:1)
只需在has_archive
自定义帖子类型中将true
设为project
即可。
添加后,更改固定链接刷新。
这应该有用。
'has_archive' => true