Put an extra check box on “Page Attributes” widget
You can create a custom field, give it a value of lang=’ur’ and check for it in your header.php. Add the custom field from the Custom Fields box. Let’s call it page_lang. Give it a value of lang=’ur’. In header.php: <?php global $post; $lang = get_post_meta(get_the_ID(), ‘page_lang’, true); ?> <body <?php body_class();?> <?php echo $lang;?>> … Read more