kisi-ka-bhai-kisi-ki-jaan

Kisi Ka Bhai Kisi Ki Jaan is an Indian Hindi language Action film. This film written by Farhad Samji, Sparsh Khetarpal, Tasha Bhambra and directed by Farhad Samji.  Salma Khan is producer of Kisi Ka Bhai Kisi Ki Jaan movie. Kisi Ka Bhai Kisi Ki Jaan film distributed by Zee Studios. Details of Kisi Ka […]

custome-button

If you have use classic editor or advanced editor tool plugins (TinyMCE). So add your own designed buttons on editor page using php code. How To Do Open functions.php and paste given code. function thekroyaard_buttons() { if (current_user_can(‘edit_posts’) && current_user_can(‘edit_pages’)) { add_filter(‘mce_external_plugins’, ‘thekroyaard_buttons_plugin’); add_filter(‘mce_buttons’, ‘register_thekroyaard_buttons’); } } add_action(‘admin_head’, ‘thekroyaard_buttons’); function thekroyaard_buttons_plugin($plugin_array) { $plugin_array[‘thekroyaard_buttons_script’] = get_template_directory_uri() […]

Play Grand Theft Auto 5 game on your computer / laptop. Download and Install GTA 5 from Epic Games Store website. How to Do Open Epic Games Store website or click-here. Then find GTA5 and download. Minimum Requirement Operating System Windows 7, 8.1, and 10 RAM 4GB Hard Disk Space 65GB

This code for shortcode, You can make own functions’s shortcode. <?php function thekroyaard_shortcode(){ return ‘<div> This is Example </div>; } add_shortcode(‘short_code_name’, ‘thekroyaard_shortcode’); ?> What is changeable <div> …. </div> add or input any text or function for showing when paste shortcode. short_code_name write any name for shortcode, and paste this where you want to show […]

Paste this code on functions.php and automatically set meta description on Post. function add_meta_description_thekroyaard() { if (is_single()) { $post = get_post(); $excerpt = strip_tags($post->post_excerpt); if ($excerpt == ”) { $excerpt = strip_tags($post->post_content); $excerpt = substr($excerpt, 0, 160); $excerpt = substr($excerpt, 0, strripos($excerpt, ” “)); $excerpt .= “…”; } echo ‘<meta name=”description” content=”‘ . $excerpt . […]

parent-theme

Make child theme and make new changes without loosing any styling or functionalities of current theme. So follow simple steps and make child theme. How To Do Login in cpanel and open file manager. Then make folder for child theme on theme folder. (example – thekroyaard_2023_child) Then make two files style.css & functions.php in created […]