Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View SHABU89's full-sized avatar

Shabu James SHABU89

  • Nagercoil, India
View GitHub Profile
@SHABU89
SHABU89 / functions.php
Created October 20, 2018 16:19
Contact Form 7 Scripts and Stylesheet files only add if shortcode present in the page else remove it.
function rjs_lwp_contactform_css_js() {
global $post;
if( is_a( $post, 'WP_Post' ) && has_shortcode( $post->post_content, 'contact-form-7') ) {
wp_enqueue_script('contact-form-7');
wp_enqueue_style('contact-form-7');
}else{
wp_dequeue_script( 'contact-form-7' );
wp_dequeue_style( 'contact-form-7' );
}