Wordpress瞬态动态生成名称作为函数中的参数

时间:2015-07-20 07:03:22

标签: php wordpress dynamic variable-names

希望你能帮我解决这个问题:

我在短代码功能中有几个不同帖子类型的查询。 现在我试图用瞬态存储这些查询。 但是这些瞬态需要为每个调用短代码的页面都有一个唯一的名称。

$trans_posts_golfcourse_ = 'trans_posts_golfcourse_'.$landingpage;

if( false === ( $$trans_posts_golfcourse_ = get_transient( 'trans_posts_golfcourse_' ) ) ) {

    $args = array (
        'posts_per_page'=> 5,
        'post__in'      => $posts_golfcourse,
        'post_type'     => 'golfcourse',
        'post_status'   => 'publish',
        'cache_results' => false,
    );

    $$trans_posts_golfcourse_ = new WP_Query( $args );

    set_transient( 'trans_posts_golfcourse_', $$trans_posts_golfcourse_, 60*60*4 );
}

动态生成的变量名称为

$$trans_posts_golfcourse_

但是这怎么看起来像一个参数?:

get_transient( 'trans_posts_golfcourse_' )

提前致谢!

编辑:找到动态变量的解决方案作为参数 必须以与变量名称相同的方式生成参数(字符串):

 get_transient( 'trans_posts_golfcourse_'.$landingpage )

完整代码:

$trans_posts_golfcourse_ = 'trans_posts_golfcourse_'.$landingpage;
if( false === ( ${$trans_posts_golfcourse_} = get_transient( 'trans_posts_golfcourse_'.$landingpage ) ) ) {

    $args = array (
        'posts_per_page'=> 5,
        'post__in'      => $posts_golfcourse,
        'post_type'     => 'golfcourse',
        'post_status'   => 'publish',
        'cache_results' => false,
    );

    ${$trans_posts_golfcourse_} = new WP_Query( $args );

    set_transient( 'trans_posts_golfcourse_'.$landingpage, ${$trans_posts_golfcourse_}, 60*60*4 );
}

编辑:瞬态不会减少查询,尽管似乎可以正确调用瞬态。有人有想法吗?

1 个答案:

答案 0 :(得分:1)

解决方案是将查询置于瞬态内。 有两种方法可以:

  1. 在函数内部(短代码f.e。)

        function get_content( $dynamic_var ){
            $transient_time = 60*60*4;
            $transient_name = "transient_name_" . $dynamic_var;
    
            $content = get_transient( $transient_key );
            if( !empty($content)  ) { return $content; }
    
            $args = array ('');
            $query = new WP_Query( $args );
    
            $content = '';
            if( $query->have_posts() ):
                while( $query->have_posts() ) : $query->the_post();
                    $content.= 'some_content';
                endwhile; wp_reset_postdata();
            endif;
    
            set_transient( $transient_name, $content, $transient_time );
            return $content;
        }
    
  2. 在模板中

            $transient_time = 60*60*4;
            $transient_name = 'transient_name_' . $page_id;
            // ${$transient_name} > name of variable is dynamically created by
            // the value of variable $transient_name (search for > php variable variables)
    
            $content = '';
            if( false === ( ${$transient_name} = get_transient( $transient_name ) ) ) {
                $args = array ('');
                $query = new WP_Query( $args );
    
                $content_inner = '';
                if( $query->have_posts() ):
                    while( $query->have_posts() ) : $query->the_post();
                        $content_inner.= 'some_content';
                    endwhile; wp_reset_postdata();
                endif;
    
                set_transient( $content_inner, ${$transient_name}, $transient_time );
            }
            $content.= ${$transient_name};