因为它必须设置在wordpress站点的后端。您可以从Blog pages show at most
设置=>阅读页面菜单中的字段。如下面的屏幕截图所示。
它将更改所有页面的设置,但如果您只想对标记页面进行此更改,那么您可以更改循环中的代码标记。php文件如下:
global $wp;
$s_array = array( \'posts_per_page\' => -1 ); // Change to how many posts you want to display
$new_query = array_merge( $s_array, (array) $wp->query_vars );
// The Query
$the_query = new WP_Query( $new_query );
// The Loop
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
?>
<!-- Here I grab the image from the post with that tag -->
<?php
}
/* Restore original Post Data */
wp_reset_postdata();
}
您还可以使用
pre_get_posts 动作挂钩改变立柱极限。