1

我正在尝试使用 get_template_part 获取要执行的简码并将属性值传递到单独的循环中,简码代码如下:

function test( $atts, $content = null ) {
     extract( shortcode_atts( array('category' => '', 'type' => '' ), $atts ) );
    ob_start();  
    get_template_part('loop', $type);  
    $ret = ob_get_contents();  
    ob_end_clean();  
    return $ret; 
}
add_shortcode('test', 'test');

然后在我有的 loop-$type.php 文件中

$cat_id = get_cat_ID($category);
$args=array(
  'cat' => $cat_id,
  'post_type' => 'post',
  'post_status' => 'publish',
  'posts_per_page' => 4,
  'caller_get_posts'=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
  while ($my_query->have_posts()) : $my_query->the_post(); ?>
                     <li> /* post stuff */         </li>

    <?php
  endwhile;
}
wp_reset_query();  

但我无法让 cat_id 使用短代码属性中的 $category 。有谁知道为什么循环不使用短代码属性?

它显然没有传递价值,这意味着我可以让它成为全球性的,但这是一个讨厌的解决方案,必须有一个干净的方法来做到这一点?

(我有一篇文章试图将短代码执行为[test category=random-category-name]

4

2 回答 2

0

我有同样的问题,我很难找到一个好的答案。

显然,像这样设置一个全局变量并不是唯一的解决方案。相反,您可以在设置变量后将模板“包含”到 php 中,并且它可以按预期工作。

在这里查看更好的描述和示例:

http://keithdevon.com/passing-variables-to-get_template_part-in-wordpress/

于 2014-06-18T16:39:06.650 回答
0

该变量$category仅在函数范围内,不会传递给get_template_part(). 尝试$category全球化。

function test( $atts, $content = null ) {
  global $category;
  extract( shortcode_atts( array('category' => '' ), $atts ) );
  ob_start();
  get_template_part('loop', $type);  
  $ret = ob_get_contents();  
  ob_end_clean();  
  return $ret; 
}
add_shortcode('test', 'test');

此外,添加global $category;到模板文件的顶部。

于 2013-02-12T18:14:53.020 回答