Header Ads Widget

Responsive Advertisement

Ticker

6/recent/ticker-posts

Create Simple ShortCode | WP Plugin Development: Class 2

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.."]

Post a Comment

0 Comments