2 使用我的代码查询数组
Posted
技术标签:
【中文标题】2 使用我的代码查询数组【英文标题】:2 query in an array using my code 【发布时间】:2012-08-30 04:28:14 【问题描述】:我在我的 Wordpress 特色文章中使用滑块。它选择一个自定义类别并返回一定数量的帖子。
如何将第一个帖子显示为自定义帖子?我可以直接在滑块代码中添加特定帖子的 ID 以使该帖子首先出现,然后是原始查询返回的其他帖子?
例如,在页面上,第一个帖子的 ID 为 6(在源代码中手动编写),第二、第三和第四个帖子是原始代码中查询返回的帖子。这怎么可能?
有人建议这很简单,我需要做的就是在此之前进行另一个查询以获取自定义帖子,然后关闭查询,重新打开它以获取下一个查询(即在滑块代码中)和最后将这些项目一起推入一个数组中。我对 php 的了解非常有限,这使我无法理解如何做到这一点。
我知道如何获取自定义帖子,此代码有效:
<?php
$post_id = 6;
$queried_post = get_post($post_id);
?>
但是,我不知道如何将这个和原始查询添加到数组中。 你呢?
这是滑块的完整代码:
<?php
$responsive = 'on' != get_option('henrik_responsive_layout') ? false : true;
$featured_auto_class = '';
if ( 'on' == get_option('henrik_slider_auto') ) $featured_auto_class .= ' et_slider_auto et_slider_speed_' . get_option('henrik_slider_autospeed');
?>
<div id="featured" class="<?php if ( $responsive ) echo 'flexslider' . $featured_auto_class; else echo 'et_cycle'; ?>">
<a id="left-arrow" href="#"><?php esc_html_e('Previous','henrik'); ?></a>
<a id="right-arrow" href="#"><?php esc_html_e('Next','henrik'); ?></a>
<?php if ( $responsive ) ?>
<ul class="slides">
<?php else ?>
<div id="slides">
<?php ?>
<?php global $ids;
$ids = array();
$arr = array();
$i=0;
$featured_cat = get_option('henrik_feat_cat');
$featured_num = (int) get_option('henrik_featured_num');
if (get_option('henrik_use_pages') == 'false') query_posts("showposts=$featured_num&cat=".get_cat_ID($featured_cat));
else
global $pages_number;
if (get_option('henrik_feat_pages') <> '') $featured_num = count(get_option('henrik_feat_pages'));
else $featured_num = $pages_number;
query_posts(array
('post_type' => 'page',
'orderby' => 'menu_order',
'order' => 'ASC',
'post__in' => (array) get_option('henrik_feat_pages'),
'showposts' => (int) $featured_num
));
?>
<?php if (have_posts()) : while (have_posts()) : the_post();
global $post; ?>
<?php if ( $responsive ) ?>
<li class="slide">
<?php else ?>
<div class="slide">
<?php ?>
<?php
$width = $responsive ? 960 : 958;
$height = 340;
$small_width = 95;
$small_height = 54;
$titletext = get_the_title();
$thumbnail = get_thumbnail($width,$height,'',$titletext,$titletext,false,'Featured');
$arr[$i]['thumbnail'] = get_thumbnail($small_width,$small_height,'',$titletext,$titletext,false,'Small');
$arr[$i]['titletext'] = $titletext;
$thumb = $thumbnail["thumb"];
print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, ''); ?>
<div class="featured-top-shadow"></div>
<div class="featured-bottom-shadow"></div>
<div class="featured-description">
<div class="feat_desc">
<p class="meta-info"><?php esc_html_e('Posted','henrik'); ?> <?php esc_html_e('by','henrik'); ?> <?php the_author_posts_link(); ?> <?php esc_html_e('on','henrik'); ?> <?php the_time(esc_attr(get_option('henrik_date_format'))) ?></p>
<h2 class="featured-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p><?php truncate_post(410); ?></p>
</div>
<a href="<?php the_permalink(); ?>" class="readmore"><?php esc_html_e('Read More', 'henrik'); ?></a>
</div> <!-- end .description -->
<?php if ( $responsive ) ?>
</li> <!-- end .slide -->
<?php else ?>
</div> <!-- end .slide -->
<?php ?>
<?php $ids[] = $post->ID; $i++; endwhile; endif; wp_reset_query(); ?>
<?php if ( $responsive ) ?>
</ul> <!-- end .slides -->
<?php else ?>
</div> <!-- end #slides -->
<?php ?>
</div> <!-- end #featured -->
<div id="controllers" class="clearfix">
<ul>
<?php for ($i = 0; $i < $featured_num; $i++) ?>
<li>
<div class="controller">
<a href="#"<?php if ( $i == 0 ) echo ' class="active"'; ?>>
<?php print_thumbnail( $arr[$i]['thumbnail']['thumb'], $arr[$i]['thumbnail']["use_timthumb"], $arr[$i]['titletext'], $small_width, $small_height ); ?>
<span class="overlay"></span>
</a>
</div>
</li>
<?php ?>
</ul>
<div id="active_item"></div>
</div> <!-- end #controllers -->
如果您选择回复,请详细说明代码示例,谢谢。
【问题讨论】:
【参考方案1】:不确定我的解决方案,因为我没有 WP 主机对其进行测试,但 rty 是这样的:
第 39 行:用下面的代码替换该行
<?php if (have_posts()) : while (have_posts()) :
global $post;
if (!$first_time)
$post_id = 6;
$post = get_post($post_id);
$first_time = 1;
else the_post();
?>
解决思路很简单:
Check for first-time loop
:firt loop - simply get needed post with "get_post()" function
:other loops - get posts from original query by "the_post()" function.
【讨论】:
我应该注意到我已经在 10 多个不同的 Q 和 A 类型的网站上问过这个问题,这是唯一一个完美运行的解决方案!如果我现在在,我会吻你!干杯! 非常感谢!有趣的事实 - 我根本没有使用 wordpress,所以我不测试代码,我只是搜索 wordpress 文档并考虑“如何..”:)以上是关于2 使用我的代码查询数组的主要内容,如果未能解决你的问题,请参考以下文章