我在wordpress领域还很陌生, 我正在尝试将HTML页面调整为wordpress主题。我需要页面内容首先显示在页面上, 然后在该页面下显示帖子。但是我得到的只是页面上两次显示的帖子(页面内容应该在其中)。有没有可能克服这个问题?
还有一个问题, 如何根据帖子类别过滤帖子?我已经尝试过使用query_posts(‘
cat = Small’
), 但是它似乎无法正常工作。
index.php的代码如下:
<
?php get_header();
?>
<
?phpwp_reset_query();
while ( have_posts() ) : the_post();
the_content();
endwhile;
wp_reset_query();
?>
<
section>
<
header class="major">
<
h2>
Erat lacinia<
/h2>
<
/header>
<
div class="features">
<
?php query_posts('cat=Small');
?>
<
?php if(have_posts()) : while(have_posts()) : the_post();
?>
<
article>
<
span class="icon fa-diamond">
<
/span>
<
div class="content">
<
h3>
<
?php the_title();
?>
<
/h3>
<
p>
<
?php the_content('Read More');
?>
<
/p>
<
/div>
<
/article>
<
?php endwhile;
endif;
?>
<
?php wp_reset_query();
?>
<
?php get_footer();
?>
#1试试下面的代码。这可能对你有帮助
<
section>
<
div class="major">
<
h2>
Erat lacinia<
/h2>
<
/div>
<
div class="features">
<
?php $args = array(
'posts_per_page'=>
-1, 'offset'=>
0, 'category'=>
'', 'category_name'=>
'', 'orderby'=>
'date', 'order'=>
'ASC', 'include'=>
'', 'exclude'=>
'', 'meta_key'=>
'', 'meta_value'=>
'', 'post_type'=>
'post', 'post_mime_type'=>
'', 'post_parent'=>
'', 'author'=>
'', 'post_status'=>
'publish', 'suppress_filters' =>
true
);
?>
<
?php query_posts( $args );
?>
<
?php while ( have_posts() ) : the_post();
?>
<
article>
<
span class="icon fa-diamond">
<
/span>
<
div class="content">
<
h3>
<
?php the_title();
?>
<
/h3>
<
p>
<
?php the_content('Read More');
?>
<
/p>
<
/div>
<
/article>
<
?php endwhile;
wp_reset_query();
?>
<
/div>
<
/section>
#2你可以使用两个循环。
在你的php页面模板中, 首先执行常规循环以获取实际页面的内容, 如下所示:
<
?php if ( have_posts() ) : while ( have_posts() ) : the_post();
?>
//output page content here
<
?php endif;
?>
然后, 为所需的帖子定义一个新查询:
$args = array(
'post_type' =>
'post', 'post_status' =>
'publish', 'posts_per_page' =>
3, 'orderby' =>
'date', 'order' =>
'ASC', )
);
//(Add and change arguments as desired in the array above)
$loop1 = new WP_Query($args);
if ( $loop1->
have_posts() ) : while ( $loop1->
have_posts() ) : $loop1->
the_post();
//Output the post contents in a loop here
<
?php endif;
wp_reset_postdata();
?>
【WordPress页面内容和同一页面中的帖子】然后添加页面模板的其余部分(页脚等)
#3
<
?php
/*
*Template name: test
*/ get_header();
if ( have_posts() ) :
while ( have_posts() ) : the_post();
$attrs = array(
'numberposts' =>
10, 'post_type'=>
'post', 'tax_query' =>
array(
array(
'taxonomy' =>
'category', 'field'=>
'slug', 'terms'=>
array( 'small' )
)
)
);
$my_posts = get_posts( $attrs );
the_content();
?>
<
?php if ($my_posts): ?>
<
section>
<
header class="major">
<
h2>
Erat lacinia<
/h2>
<
/header>
<
div class="features">
<
?php foreach ($my_posts as $key =>
$value): ?>
<
article>
<
span class="icon fa-diamond">
<
/span>
<
div class="content">
<
h3>
<
?= $value->
post_title;
?>
<
/h3>
<
p>
<
?= $value->
post_content ?>
<
/p>
<
/div>
<
/article>
<
?php endforeach ?>
<
/div>
<
/section>
<
?php endif ?>
<
?php
endwhile;
else :
echo wpautop( 'Sorry, no posts were found' );
endif;
get_footer();
?>
推荐阅读
- WordPress页面本身正在滚动并开始动摇
- WordPress-覆盖短代码
- #yyds干货盘点# web安全day6(IIS之WEB服务器)
- java设计模式-设计原则-创建型模式-场景理解-第一篇
- 基于Guava API实现异步通知和事件回调
- Numpy 的基本用法-数组对象
- #私藏项目实操分享# Echarts实操纪实,需要实现一个日程表,以及常用属性
- SVN的安装及汉化IDEA中整合SVN使用详情[2021-11-1最新详细教学]
- C--初识字符串转义字符注释