16 July 2020

How to add custom attribute in body in wordpress?

Add custom attribute in body in wordpress.


function wp_body_classes( $classes )
{


    $classes[] = '"oncontextmenu="return false;';

    return $classes;
}
add_filter( 'body_class','wp_body_classes', 999 );

No comments:

Post a Comment

How to add re-captcha v3 on all Elementor forms using coding?

 Add re-captcha v3 on all Elementor forms using coding add_action('wp_footer',function(){     ?> <script src="https://www...