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 create video slider with cuncks of videos without download all videos?

 Create video slider with cuncks of videos without download all videos function custom_video_slider_shortcode() { $slider_id = 'vide...