我安装了插件,它在我的archive.php
. 这是代码:
<?php
// WP_Query arguments
$args = array(
'post_type' => array( 'connazionali' ),
'nopaging' => false,
'paged' => '1',
);
// The Query
$query = new WP_Query( $args );
// The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
the_title();
the_content();
}
wp_pagenavi( array( 'query' => $query ));
} else {
// no posts found
}
// Restore original Post Data
wp_reset_postdata();
?>
但是,当我尝试使用相同的代码 topage.php
和index.php
,将导航链接放置到我的静态主页上的帖子网格时,它不起作用。另外,我真的不知道如何在我的静态主页上显示代码。我实际上在编码方面很愚蠢。请帮我。提前致谢。