//forcing the athan plugin masjidal to parse content on all pages and posts, including the footer and sidebar function add_zuhr_after_wpbakery_content( $content ) { // Don't run in admin, feeds, or REST requests. if ( is_admin() || is_feed() || wp_doing_ajax() ) { return $content; } // Only run on Pages. if ( is_page() ) { $zuhr = '
' . do_shortcode( '[masjidal_salah_zuhr]' ) . '
'; $content .= $zuhr; } return $content; } add_filter( 'the_content', 'add_zuhr_after_wpbakery_content', 99999 );
0:00
0:00