我在使用WordPress时遇到一些问题,要在另一个页面上显示属于某个帖子的图片。 我正在寻找的是一个主页,其中列出了某个类别中的所有帖子,并显示标题,摘录和'查看示例'链接。视图示例链接将显示属于LightBox中帖子的所有图像,但在主页上。
到目前为止,我有这个,但现在我有点卡住了。
<?php query_posts('cat=15&order=DSC'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="col-md-6">
<div class="pakket-block">
<h3><?php the_title(); ?></h3>
<?php the_excerpt(); ?>
<span class="read_more"><a href="<?php the_permalink(); ?>" rel="shadowbox">View examples</a></span>
</div> <!-- /.pakket-block -->
</div> <!-- /.col-md-6 -->
<?php endwhile; endif; ?>
<?php wp_reset_postdata(); // reset the query ?>
答案 0 :(得分:0)
这是一个非常粗略的例子(无法在我当前的环境中测试)
这应该向您发送正确的方向来获取附加到页面的所有图像。
将此功能放在functions.php中:
function get_match( $regex, $content ) {
preg_match($regex, $content, $matches);
return $matches[1];
}
这在模板文件中:
query_posts('cat=15&order=DSC');
if ( have_posts() ) : while ( have_posts() ) : the_post();
// Extract the shortcode arguments from the $page or $post
$shortcode_args = shortcode_parse_atts(get_match('/\[gallery\s(.*)\]/isU', $post->post_content));
$ids = $shortcode_args["ids"];
// get the attachments specified in the "ids" shortcode argument
$attachments = get_posts(
array(
'post_parent' => $post->ID,
'post_status' => 'inherit',
'post_type' => 'attachment',
'post_mime_type' => 'image',
'order' => 'menu_order ID',
'orderby' => 'post__in',
)
);
print_r($attachments);
endwhile; endif;
wp_reset_postdata();
答案 1 :(得分:0)
不使用query_posts
进行其他帖子查询。请参阅:When should you use WP_Query vs query_posts() vs get_posts()?
您可以使用2 get_posts
完成所需的操作,一个用于获取该类别中的帖子。在第一个内部,第二个是使用post_parent
(如Richard Denton的答案)使用第一个循环的ID来获取附件。
您可以在functions.php
内创建自己的功能来完成工作。因此,在您的模板文件中,您只需(通用代码大纲):
<?php print_category_15(); ?>
功能:
function print_category_15() {
$posts = get_posts( $your_arguments );
if( $posts ) {
foreach ( $posts as $post ) {
// Print titles and excerpts
print_childrens_of_15( $post->ID );
}
}
}
function print_childrens_of_15( $parent ) {
$children = get_posts( $your_arguments_for_attachments );
if( $children ) {
foreach ( $children as $child ) {
// Print your hidden divs to be used in the ShadowBox
}
}
}