我有一个自定义的帖子类型,它没有在我的存档页面(视频)中显示内容,我做错了什么。这是代码。我感谢帮助人员。
视频帖子类型
<?php
/**
* CUSTOM POST TYPES
*/
add_action('init','videos_post_type');
function videos_post_type(){
$labels = array(
'name' => __( 'Videos', 'text-domain' ),
'singular_name' => __( 'Video', 'text-domain' ),
'add_new' => _x( 'Add New Video', 'text-domain', 'text-domain' ),
'add_new_item' => __( 'Add New Video', 'text-domain' ),
'edit_item' => __( 'Edit Video', 'text-domain' ),
'new_item' => __( 'New Singular Name', 'text-domain' ),
'view_item' => __( 'View Videos', 'text-domain' ),
'search_items' => __( 'Search Videos', 'text-domain' ),
'not_found' => __( 'No Plural Name found', 'text-domain' ),
'not_found_in_trash' => __( 'No Plural Name found in Trash', 'text-domain' ),
'parent_item_colon' => __( 'Parent Singular Name:', 'text-domain' ),
'menu_name' => __( 'Videos', 'text-domain' ),
);
$args = array(
'labels' => $labels,
'hierarchical' => false,
'description' => 'description',
'taxonomies' => array(),
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_admin_bar' => true,
'menu_position' => null,
'menu_icon' => null,
'show_in_nav_menus' => true,
'publicly_queryable' => true,
'exclude_from_search' => false,
'has_archive' => true,
'query_var' => true,
'can_export' => true,
'rewrite' => array('slug'=>'videos'),
'capability_type' => 'post',
'supports' => array('title', 'thumbnail','page-attributes','editor')
);
register_post_type('Videos', $args);
}
档案视频模板
<?php get_header();?>
<section class="videos">
<div class="video_banner">
<img src="<?php echo get_template_directory_uri().'/images/image 2.jpg';?>" alt="">
<h3 class="videos_title"><?php wp_title('');?> </h3>
<?php
$args = array(
'post_type'=> 'videos',
'orderby'=> 'menu_order',
'post_per_page'=> 4
);
$videos = new WP_QUERY($args);
?>
<?php if ( $videos->have_posts() ) :?>
<?php while ( $videos->have_posts() ) : $videos-> the_post(); ?>
<?php get_template_part('loop', 'videos' );?>
<!-- post -->
<?php endwhile; ?>
<!-- post navigation -->
<?php else: ?>
<?php endif; ?>
</div><!-- END CONTAINER-->
</div>
</section>
答案 0 :(得分:0)
将您的帖子类型重命名为videos
。这应该可以解决你的问题。
创建自定义帖子类型和自定义分类时,以下是命名约定的一些黄金规则
从不使用camelcase,所有字符都应为小写
永远不要使用特殊字符,但下划线除外
不受保留名称的限制
此外,删除自定义查询并使用默认循环。如果您需要更改主查询中的任何内容,请使用pre_get_posts