Amity Full Width
// Add Shortcode function full_width( $atts ) { // Attributes extract( shortcode_atts( array( 'post_id' => '834', 'background_image' => '', ), $atts ) ); // Code ob_start(); include('full-width-content.php'); $input=ob_get_contents();; ob_end_clean(); return $input; } add_shortcode( 'full_width', 'full_width' );