admin管理员组

文章数量:1387357

im using WP User Frontend Pro plugin i want to echo the pack title using a shortcode to put it in bakery visual all what i know is this is the title $pack->post_title;

i tried something like this

function wpc_shortcode_pack_title() {
global $pack;
echo $pack->post_title;
}
add_shortcode( 'sub_name', 'wpc_shortcode_pack_title' );

but didnt work.

本文标签: postshow to create a shortcode from a variable in plugin