我正在制作 wordpress主题,我的主页由3部分组成(见附图):
第3部分显示在我网站的所有页面上作为侧边栏。
我想知道我是否使用正确的方法在wordpress中查询数据,以获取所需的数据/内容,如页面标题,页面缩略图,帖子标题等...
我读过它不建议使用query_post()所以我想知道正确的方法是什么。 请不要看html,我的问题只是关于php。 重要的是要知道我的代码确实有效,所以我没有错误。
我在第一部分获取数据的代码(红色):
<div id="hiContainer">
<?php $i = 1;
query_posts( 'posts_per_page=4&cat=3' );
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
if ( $i < 4 ) {
echo '<div class="headerItem">';
}
else {
echo '<div id="hiLast">';
}
if ( has_post_thumbnail() ) {
the_post_thumbnail( 'hiThumb' );
}
?>
<div class="hiTitle">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
</div>
<?php echo '</div>';
$i += 1;
}
}
else {
echo '<p>';
_e( 'Sorry, no posts matched your criteria.' );
echo '</p>';
}
?>
</div>
<?php wp_reset_query(); ?>
我在第二部分获取数据的代码(橙色):
<div id="niContainer">
<?php
query_posts( 'posts_per_page=3&cat=5' );
if ( have_posts() ) {
while( have_posts() ) {
the_post();
echo '<div class="newsItem">';
if ( has_post_thumbnail() ) {
echo '<div class="niImage">';
the_post_thumbnail( 'niThumb' );
echo '</div>';
}
?>
<div class="niTitle">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
</div>
<div class="niExcerpt">
<p><?php echo get_the_excerpt(); ?></p>
</div>
<div class="niReadMore">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">Lees meer <span style="color:#c73f20;">»</span></a>
</div>
<?php
echo '</div>';
}
}
?>
</div>
我的代码可以在第3部分中使用数据(蓝色):
for ( $i = 1; $i < 4; $i++ ) {
$post_id = ot_get_option( 'post'.$i );
$post = get_post($post_id);
$author_id = $post->post_author;
$author_first_name = get_the_author_meta( 'first_name', $author_id );
$author_last_name = get_the_author_meta( 'last_name', $author_id );
echo '<div class="rsbPost">';
echo '<div class="rsbpThumb">';
echo get_the_post_thumbnail( $post_id ,'rsbpThumb' );
echo '</div>';
echo '<div class="rsbpTitle">';
echo '<a href="';
echo get_permalink( $post_id );
echo '"title="';
echo $post->post_title;
echo '">';
echo $post->post_title;
echo'</a>';
echo '</div>';
echo '<div class="rsbpMeta">';
if ( !empty( $author_first_name ) || !empty( $author_last_name ) ) {
echo $author_first_name . " " . $author_last_name;
}
else {
echo 'Redactie';
}
echo ', ';
echo mysql2date('j F Y', $post->post_date);
echo '</div>';
echo '</div>';
}
答案 0 :(得分:3)
最好避免使用query_posts()
。在codex页面上有一个关于这一点的警告:http://codex.wordpress.org/Function_Reference/query_posts
因此,解决方案是什么?
WP_Query的新实例。它几乎完全按照您的方式工作。
$section1 = new WP_Query( array(
'posts_per_page' => 4,
'cat' => 3,
) );
您可以在此处找到有关可能参数的更多信息: http://codex.wordpress.org/Class_Reference/WP_Query
然后替换你当前的循环:
if ( $section1->have_posts() ) : while ( $section1->have_posts() ) : $section1->the_post();
我将其命名为第1部分,但使用更合适的名称是明智的。例如$header_posts
。
为您的三个区域创建3个实例。
为了更进一步,您可以将其构建到home.php / index.php / front-page.php,而不是将主页设置为静态页面。然后使用pre_get_posts
过滤器修改主查询(标记为2的区域),但这不在您的问题范围内。