是指在WordPress中自定义的帖子类型无法在编辑页面中选择对应的模板。这可能是由于以下几个原因导致的:
解决这个问题的方法如下:
$args = array(
'labels' => $labels,
'public' => true,
'supports' => array( 'title', 'editor', 'thumbnail', 'template' ),
);
register_post_type( 'custom_post_type', $args );
$args = array(
'labels' => $labels,
'public' => true,
'supports' => array( 'title', 'editor', 'thumbnail', 'template' ),
'template' => array(
array( 'core/paragraph', array(
'placeholder' => 'Add content...',
) ),
),
);
register_post_type( 'custom_post_type', $args );
以上是解决WordPress自定义帖子类型选择模板下拉列表缺失的一般方法。如果问题仍然存在,可能需要进一步检查主题或插件的代码,或者考虑使用WordPress的调试工具来定位问题。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云