Andrew Collins
Andrew Collins

Reputation: 13

Wordpress get short code link from content

Hi I was just wondering if there is a way to get the inside of the [embed][/embed] shortcode. I tried this method but to no prevail:. thanks

$argsabc = extract( shortcode_atts( array(
    'embed' => ''
), $this->post['post_content'] ) );

Upvotes: 1

Views: 98

Answers (1)

Tristup
Tristup

Reputation: 3663

 get_shortcode_regex() 

Please use this to get it done. Hope it will work for you. More Info :http://codex.wordpress.org/Function_Reference/get_shortcode_regex

Upvotes: 1

Related Questions