我创建了此自定义邮件类型
function my_custom_post_game() {
$labels = array(
'name' => _x( 'Game', 'post type general name' ),
'singular_name' => _x( 'Games', 'post type singular name' ),
'add_new' => _x( 'Add New', 'Game' ),
'add_new_item' => __( 'Add New Game' ),
'rewrite' =>array( 'slug' => 'game' ),
'edit_item' => __( 'Edit Game' ),
'new_item' => __( 'New Game' ),
'all_items' => __( 'All Games' ),
'view_item' => __( 'View Game' ),
'search_items' => __( 'Search Game' ),
'not_found' => __( 'No Games found' ),
'not_found_in_trash' => __( 'No Games found in the Trash' ),
'parent_item_colon' => '',
'menu_name' => 'Games'
);
$args = array(
'labels' => $labels,
'description' => 'Holds our Games and Game specific data',
'public' => true,
'menu_position' => 5,
'supports' => array( 'title', 'editor', 'thumbnail','custom-fields', 'comments' ),
'has_archive' => true,
);
register_post_type( 'games', $args );
}
add_action( 'init', 'my_custom_post_game' );
这是主页上的循环
$counter = 0;
$args = array( 'post_type' => 'Game', 'posts_per_page' => 10 );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
echo $post_id[rand(0,sizeof($post_id))];
if($counter < 2){
?>
<a href=<?php get_post_permalink()?>>
<div id="mypost" class="col-md-5" style="min-height:400px;">
<?php the_post_thumbnail('large');
?>
</div>
</a>
<div class="col-md-1"></div>
<?php
$counter++;
}
else {?>
<a href=<?php get_post_permalink()?>>
<div id="mypost" class="col-md-3" href=<?php get_permalink()?>>
<!-- post display --> <?php echo get_post_permalink()?>
<?php the_post_thumbnail('medium'); ?>
</div>
</a>
<div class="col-md-1"></div>
<?php
}
endwhile; ?>
permalink给出
http://localhost/indigamer/?post_type=game&p=63
但当我右击div块并复制链接位置时,它会提供到主页的链接
我在主题的根文件夹中创建了single-game.php
这是密码
<?php get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main site-main--single" role="main">
test
</main><!-- #main -->
</div><!-- #primary -->
最佳答案
我认为你的代码有一些问题。
尝试添加:
$args = array(
'labels' => $labels,
'description' => 'Holds our Games and Game specific data',
'public' => true,
'menu_position' => 5,
'supports' => array( 'title', 'editor', 'thumbnail','custom-fields', 'comments' ),
'rewrite' => array('slug' => 'games'),
'has_archive' => true,
);
register_post_type( 'games', $args );
在WP查询中,使用slug:
$args = array( 'post_type' => 'game', 'posts_per_page' => 10 );
别忘了加上
wp_reset_postdata();
编辑:看到更多错误:
你需要做的是
href="<?php echo get_post_permalink(); ?>"
关于php - 自定义帖子类型重定向到Wordpress中的主页,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38518993/