Questions tagged «single»

7
如何禁用自定义帖子类型的单一视图?
我创建了一个自定义帖子类型: register_post_type('sample_post_type',array( 'labels' => array( 'name' => _x('Sample Posts', 'post type general name'), 'singular_name' => _x('Sample Post', 'post type singular name') ), 'public' => true, 'show_in_nav_menus' => false, 'exclude_from_search' => true )); 如何禁用此特定帖子类型的单个帖子视图?显示简单的404很好,或重定向到主页。这是在插件内部,因此我无法创建single-sample_post_type.php文件来设置空白页。

5
如何在Woocommerce中的single-product.php上检查产品是否属于某个类别?
我如何才能在single-product.php上检查产品是否属于某个产品类别? <?php if (is_product_category('audio')) { echo 'In audio'; woocommerce_get_template_part( 'content', 'single-product' ); } elseif (is_product_category('elektro')) { echo 'In elektro'; woocommerce_get_template_part( 'content', 'single-product' ); } else { echo 'some blabla'; } ?> is_product_category('slug')对single-product.php没有影响。我想有较高的条件。在单一产品页面上对此有什么解决方案?
25 plugins  single 

4
自定义帖子类型single- {custom} .php无法正常工作
我使用机器名称special_media_post制作了一个自定义帖子类型,而wordpress根本看不到single-special_media_post.php。我完全输了。它一直默认为index.php 这是我的自定义帖子类型及其分类法的代码: //Post and Taxonomy stuff //Register Custom Post Type function special_media_post() { $labels = array( 'name' => _x( 'Media Posts', 'Post Type General Name', 'text_domain' ), 'singular_name' => _x( 'Media Post', 'Post Type Singular Name', 'text_domain' ), 'menu_name' => __( 'Media Post', 'text_domain' ), 'parent_item_colon' => __( 'Media Post:', …

4
自定义帖子类型单页返回404错误
我有一个名为的自定义帖子类型slide。它具有内容和一些自定义字段。我希望WP在用户单击幻灯片单页链接时显示single.php主题single-slide.php。我的问题是,当我想查看单个幻灯片页面时,WP抛出404错误。 这是我的代码在functions.php: function create_slide_post_type() { $labels = array( 'name' => _x( 'اسلایدها', 'i2sa' ), 'singular_name' => _x( 'اسلاید', 'i2sa' ), 'menu_name' => _x( 'اسلایدها', 'i2sa' ), 'name_admin_bar' => _x( 'اسلاید', 'i2sa' ), 'add_new' => _x( 'افزودن', 'i2sa' ), 'add_new_item' => __( 'افزودن اسلاید جدید', 'i2sa' ), 'new_item' => __( 'اسلاید …

3
什么是singular.php?
从4.3开始,我们有了一个新模板singular.php。我试图了解它是什么,但没有得到。:) 的page.php页面。在single.php为每一个岗位类型。如果我们有single-[post-type].php,我们可以使用自定义后类型的特定模板..所以我们为什么需要singular.php?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.