Wordpress Shortcode没有从函数传递变量(新手)

时间:2015-02-02 06:59:40

标签: php wordpress wordpress-plugin shortcode

以下是相关代码片段:

function hoursearned_func($user) {
    $key = 'Service Hours Earned';
    if(isset($user[$key])) {
        $result = $user[$key];
    }
return "Service Hours Earned: ".$result." Hours";
}
add_shortcode('hoursearned', 'hoursearned_func');

这个小函数只返回给定键的数组的值,但是当调用短代码[hoursearned]时,它只显示:

Service Hours Earned: Hours

而不是:

Service Hours Earned: 200 Hours

其中200是由给定$ user的函数hoursearned_func返回的字符串。

由于某种原因,Wordpress没有将返回的变量从函数传递给短代码。如何让Wordpress显示函数的结果?

如果有帮助,这里是完整的代码...(请注意,所有这些都是作为插件加载的)     

//Dump CSV file (SalesForce Report) to php array to be parsed..
add_action('dump_csv_array', 'dump_csv_array', 10);
function dump_csv_array(){
    $data = array();
    $header = NULL;
    if (($file = fopen('http://blah.com/info.csv', 'r')) !==FALSE) { //The link to the CSV is insignificant
        while (($row = fgetcsv($file, 1000, ",")) !==FALSE) {
            if(!$header)
                $header = $row;
            else
                $data[] = array_combine($header, $row);
            }
    fclose($file);
    }
    return $data;
}

$multiarray = (array) dump_csv_array();
global $current_user;
get_currentuserinfo();
$user_email = $current_user->user_email;

//Parses the multidimensional array of Dumped CSV info. Looks up the current user's email and returns a single array of the current user's SalesForce information.  
function parse_array($multiarray, $user_email){
    $array = (array) $multiarray;
    $email = $user_email;       
        if(is_user_logged_in() === true ) {
            foreach($array as $subarray) {
                if(isset($subarray['Email']) && $subarray['Email'] == $email) {
                    $data = $subarray;
                }   
            }
        }
        else {
            return NULL;
        }
return $data;
}

$user = parse_array($multiarray, $user_email);

//Defines Shortcodes and their Functions
function hoursearned_func($user) {
    $key = 'Service Hours Earned';
    if(isset($user[$key])) {
        $result = $user[$key];
    }
return "Service Hours Earned: ".$result." Hours";
}


function hoursawarded_func($user) {
$key = 'Service Hours Awarded';
    if(isset($user[$key])) {
        $result = $user[$key];
    }
return "Service Hours Awarded: ".$result." Hours";
}

function rank_func($user) {
$key = 'Rank';
    if(isset($user[$key])) {
        $result = $user[$key];
    }
return "Rank: ".$result;
}

function memstatus_func($user) {
    $key = 'Membership Status';
    if(isset($user[$key])) {
        $result = $user[$key];
    }
return "Status: ".$result;
}

function register($atts) {
    add_shortcode( 'hoursearned', 'hoursearned_func');
    add_shortcode( 'hoursawarded', 'servicehours_func');
    add_shortcode( 'rank', 'rank_func');
    add_shortcode( 'memstatus', 'memstatus_func');
}
add_action('init', 'register');
var_dump(hoursearned_func($user));

1 个答案:

答案 0 :(得分:0)

尝试使用属性创建短代码,(或)检索短代码函数中的$user数据并将其设置为默认值。

function example_func($atts) {
    $user = get_user_array(); //Retrieve the data
    $atts = shortcode_atts($user, $atts);
    return 'example: ' . $atts['foo'] . ' ' . $atts['bar'];
}
add_shortcode('example', 'example_func');

看看Shortcode API它基本上解释了一切。