do_shortcode within a shortcode
You can try this: add_shortcode( ‘content’,’content_callback’ ); function content_callback( $atts, $content = NULL ){ $atts = shortcode_atts(array( ‘pid’ => ”, ), $atts); if( ! is_int( 1 * $atts[‘pid’] ) ) return “<!– Shortcode Error: pid must be an integer –>”; if( absint( $atts[‘pid’] ) === get_the_ID() ) return “<!– Shortcode Error: pid can’t be the … Read more