我已经把这个代码用于滑块来显示提取用户选择类别类别的帖子,但在添加此代码之后,它不会在自定义字段之后选择,例如任何其他PHP代码,即使我已经尝试过..
这是我申请的代码
<div class="blog-posts-slider">
<?php $temp_query = $wp_query;
$category_name = get_field('business_solutions_category_name');
query_posts(array(
'category_name' => $category_name,
'posts_per_page' => 5
)
);
while (have_posts()) : the_post();
$thumb_id = get_post_thumbnail_id();
$thumb_url_array = wp_get_attachment_image_src($thumb_id, 'thumbnail-size', true);
$thumb_url = $thumb_url_array[0];
?>
<div class="slider-single-post">
<div class="blog-image" style="background-image : url('<?php the_post_thumbnail_url(); ?>');"></div>
<div class="slider-post-text">
<h3><?php the_title(); ?></h3>
<p><?php the_excerpt(); ?></p>
<a href="<?php the_permalink(); ?>">Read More</a>
</div>
</div>
<?php endwhile;
$wp_query = $temp_query; ?>
</div>
我对php并不熟悉..但我认为这是错误的结束或低于那条线...我错过了什么.. 提前谢谢。
答案 0 :(得分:0)
您必须错误地使用get_post_custom。来自手抄本, get_post_custom
返回包含a的所有自定义字段的多维数组 特别是帖子或页面。
get_post_custom($post_id);
答案 1 :(得分:0)
UILabel