2

我想知道是否有更有效的方法来编写这个,使用while循环或其他东西。本质上,我想动态生成一些 WordPress 短代码。

# Span 1
add_shortcode('span-1', 'span1');
function span1($atts, $content = null) {
    return generateSpan(1, $content);
}

# Span 2
add_shortcode('span-2', 'span2');
function span2($atts, $content = null) {
    return generateSpan(2, $content);
}

// ... repeating as many times as necessary

我试过这个,但它似乎没有用:

$i = 1;
while ($i < 12) {

    $functionName = 'span' . $i;
    $shortcodeName = 'span-' . $i;

    add_shortcode($shortcodeName, $functionName);
    $$functionName = function($atts, $content = null) {
        return generateSpan($i, $content);
    };

    $i++;

}
4

2 回答 2

2

我知道它不能回答“动态生成”问题,但是,或者,您可以使用以下属性:[span cols="1"]-> [span cols="12"]

add_shortcode('span', 'span_shortcode');

function span_shortcode( $atts, $content = null ) 
{
    if( isset( $atts['cols'] ) )
    {
       return generateSpan( $atts['cols'], $content );
    }  
}

回调的第三个参数可以用来检测当前的简码:

for( $i=1; $i<13; $i++ )
    add_shortcode( "span-$i", 'span_so_17473011' );

function span_so_17473011( $atts, $content = null, $shortcode ) 
{
    $current = str_replace( 'span-', '', $shortcode ); // Will get $i value
    return generateSpan( $current, $content );
}

参考: current_shortcode() - 检测当前使用的简码

于 2013-07-04T15:54:49.180 回答
0

你应该能够做到这一点:

<?php

$scName = 'span-';

for($i = 0; $i < 12; $i++)
{
    add_shortcode($scName . $i, function($atts, $content = null){
        return generateSpan($i, $content);
    });
}

?>
于 2013-07-04T14:55:49.780 回答