WebP Image It is an image format employing both lossy and lossless compression. WebP image is supports animation and alpha transparency and this type image format Developed by Google. How to upload WebP Image in WordPress If WebP image not suppot to upload in WordPress, so Add given code in functions.php file of your WordPress […]
How To
To run any type of file in WordPress, it is necessary to give the address of the location. How To >> Open Theme folder and file. >> Store any one file to locate in custom theme. example – customtheme > image > logo.jpg >> thene add this code where you locate stored file. <img src=”<?php […]
wp_is _mobile This class already define by WordPress. You just add this code and design WordPress mobile theme. How To Open your theme and paste this code and design now- <?php if( wp_is_mobile()){ ?> <span>mobile stuff goes here</span> <?php } else { ?> <span>desktop stuff goes here</span> <?php } ?> Then SAVE your theme’s file
How to Disable Link Open Style.css section and paste this code in class which you want to disable link- pointer-events: none; cursor: default; Then save CSS file.
Document correction in NATS – If you have uploaded any wrong document instead of education document at the time of registration in NATS, then you can rectify that mistake completely, for that you will have to send an email. After checking the email, the correct document sent by you will be uploaded through NATS. official […]

Design your website’s homepage with easy steps. Manage your home page without any plugins, Just use this simple code in your custom theme. How To >> First of all open your hosting cpanel and go to theme folder. >> Create new file name with page-home.php. >> Then paste these code in page-home.php. <?php /** Template […]
If you want to set any type of image in background position. so follow these easy steps with thekroyaard.com. How To >> Open Your style.css section. >> paste these code background-image: url(image_url) ; background-size: 250px 1600px; background-repeat: no-repeat; >> then save and apply this.
Category Make your WordPress website with specific category and show how much post per page in specific category. How to add specific category first of all open your WordPress active theme folder and paste this code where you want show specific category post. <?php // the query $the_query = new WP_Query(array( ‘category_name’ => ‘ENTER_NAME’, ‘post_status’ […]
Add share button without any type of plugin or thirdparty app on wordpress, Just paste given code where you want to show share button. How to add share button on theme Open active theme’s folder then open header.php file and paste given code between <head> ….. </head>. <link rel=”stylesheet” href=”https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css”> Then paste share button where […]
How To Show Show Latest Post or Item without any plugin. so follow this easy steps and show latest item. code- <?php // Define our WP Query Parameters $the_query = new WP_Query( ‘posts_per_page=5’ ); ?> <?php // Start our WP Query while ($the_query -> have_posts()) : $the_query -> the_post(); // Display the Post Title with […]