Create Simple ShortCode Plugin Code
add_action("init", "tw_init");
function tw_init(){
add_shortcode("test", "tw_my_shortcode");
}
function tw_my_shortcode($atts){
$atts = shortcode_atts(array(
"message" => "hello world !",
), $atts, "test");
return $atts["message"];
}
-> Post me is tarah likhain gay.
[test message="hi I am Abdul Rauf.."]
0 Comments