我在WordPress中制作自定义帖子类型,我也将其单独的两个页面单个acme_product.php,archive-acme_product.php,但问题是当我从自定义帖子类型上传帖子时显示index.php
这是我的功能代码
function new_post_type_wp(){
register_post_type('acme_product',
array(
'labels' => array(
'name' => __('Products'),
'singular_name' => __('Product')
),
'public' => true,
'has_archive' => true,
)
);
}
add_action('init','new_post_type_wp');
请告诉我如何将我的自定义帖子导航到特定的自定义页面我也阅读wordpress codex它非常有帮助我完全按照其方法但我的问题同样友好地帮助我
答案 0 :(得分:1)
您是否在特定页面中尝试过此自定义帖子类型?
$args = array( 'post_type' => 'acme_product', 'posts_per_page' => 10 );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
the_title();
echo '<div class="entry-content">';
the_content();
echo '</div>';
endwhile;