我目前正在学习wordpress开发,我尝试添加分页,在帖子底部显示“较旧”/“较新的帖子”链接和当前页面的数量。我还尝试将缩略图大小更改为200x200px,所有图像都应该被裁剪。
以下是我当前的wordpress循环:
<main id="main">
<?php
// the query
$args = array(\'posts_per_page\' => 10 );
$the_query = new WP_Query( $args );
?>
<?php if ( $the_query->have_posts() ) { ?>
<!-- loop -->
<?php while ( $the_query->have_posts() ) {
$the_query->the_post(); ?>
<article id="post">
<div id="thumbnail">
<?php
if ( has_post_thumbnail() ) { the_post_thumbnail(array( "class"=>"thumbnail")); } ?>
</div>
<h2><a href="<?php the_permalink();?>"><?php the_title(); ?></a></h2>
<div class="entry">
<?php the_excerpt(); ?>
</div>
</article>
<?php } } else { ?>
<p><?php _e( \'Die Posts entsprechen leider nicht den Kriterien.\' ); ?></p>
<?php } ?>
<!-- end of the loop -->
<?php wp_reset_postdata(); ?>
</main>
我尝试了各种方法来增加新的图像大小,但都没有效果。
目前看起来是这样的:http://prnt.sc/b3v88w 我只想把它从150x150扩展到200x200px。