function socialWarfare($content = false, $where = 'default', $echo = true)
{
    // Collect the deprecated fields and place them into an array
    $array['content'] = $content;
    $array['where'] = $where;
    $array['echo'] = $echo;
    $array['devs'] = true;
    // Pass the array into the new function
    return social_warfare($array);
}
示例#2
0
function social_warfareShortcode($array)
{
    if (!isset($array['where'])) {
        $array['where'] = 'after';
    }
    if (!isset($array['echo'])) {
        $array['echo'] = false;
    }
    if (!isset($array['content'])) {
        $array['content'] = false;
    }
    $array['shortcode'] = true;
    $array['devs'] = true;
    return social_warfare($array);
}