我在要求修复的网站上遇到产品固定链接问题。
链接断开的网站页面:http://fallenangelbakery.com/menu/cupcakes/
创建了一个产品类型分类,可以访问上面的页面。但是,指向各个产品的链接不起作用。编辑产品时,固定链接和短链接不起作用。
taxonomy-product-types.php中的循环代码
<div class="cw">
<div class="c">
<div class="cs"></div>
<h1><?= single_tag_title( '', false ) ?></h1>
<div class="cds"><?= category_description()?></div>
<div class="full">
<? if($wp_query->post_count < 8 && $wp_query->post_count > 4 || $wp_query->post_count == 3){
$class = 'medium';
} else if($wp_query->post_count <= 4){
$class = 'large';
} else {
$class = 'small';
}
?>
<ul class="product-list <?=$class?>">
<? while ( have_posts() ) : the_post(); ?>
<li>
<a href="<?= the_permalink(); ?>" title="<? the_title(); ?>">
<div class="frame top gb"></div>
<div class="frame right gb"></div>
<? the_post_thumbnail( 'fab-'.$class.'-image' ); ?>
<div class="frame bottom gb"></div>
<div class="frame left gb"></div>
<span class="title"><? the_title(); ?></span>
</a>
</li>
<? endwhile; ?>
</ul>
<div class="divider category"><span class="stars gb"></span></div>
</div>
</div>
<div class="cb gb"></div>
分类与“产品”相关联,我们在wp-admin中将产品和产品类型作为菜单项
分类:产品类型 分类标签:产品 slu ::菜单 query var:product-types 单数名称:产品类型
为了获得单个产品,我创建了一个名为taxonomy-product.php的文件。
任何人都可以知道为什么产品永久链接根本不起作用...即使在wp-admin中尝试预览页面
https://wordpress.org/plugins/ultimate-taxonomy-manager/
非常感谢提前
答案 0 :(得分:0)
您应该查看以下内容:http://codex.wordpress.org/Function_Reference/register_taxonomy
我认为这是分类法不公开的问题。