WordPress

Show next previous button to show next page’sĀ  and previous page’s list, Add pagination without plugins, simply paste given code on your active theme. How to Show Next Previous Button Open file manager or active theme‘s folder. Open functions.php file and paste given code then SAVE. function thekroyaard_pagination() { global $wp_query; echo ‘<div class=”pagination” role=”navigation”>’; […]

If your website’s content not show so now create single.php file in your Custom WordPress theme’s folder, then show uploaded or created/published post content. How to do First of all open active theme’s folder. Then create single.php file and paste given code there then SAVE. Code – <?php /** * The template for displaying all […]

If you have already design your webpage responsive or mobile friendly, but google warn to some page is not mobile friendly. So you have face this problem? i have solution for you. What can i do I’m sure you are disallow: wp-content/themes on robots.txt’s file. Remove disallow: wp-content/themes from robots.txt then SAVE it. Then SUBMIT […]

Protect your article using disable selecting code. If you want to stop mouse selection open in any div, section or span, So paste given code there then save. Code -webkit-user-select: none; /* Safari */ -ms-user-select: none; /* IE 10 and IE 11 */ user-select: none; /* Standard syntax */ This code worked perfectly on my […]

Guys! in this article i show you some important/use_ful code for theme development. And I’m sure you can make WordPress theme easily. What’s important for WordPress theme First of all create a folder then make one by one php file and paste given code. So lets start- header.php (required) <?php /** * The header for […]

You want to make a word as searchable internal link using input box. So add given code on post and blogger theme with simple steps – How to Do Just add these code on your post and active blogger theme, Then take a new advantage. If you have any downloading, lyrics website so this code […]

Make length’s value to converter for your website using JavaScript and HTML. In this tool you can enter any value then see all converted values to another unit. How to make LENGTH converter tool Create a page template on active theme’s folder. Open created page and paste given code. Then SAVE and go to wordpress’s […]

Make dropdown menu or add link without using any plugin or JavaScript. You cane use given code in your WordPress or Blogger website. How To Do Open active theme’s folder or paste given code where you want to show dropdown menu. Add URL in value then SAVE. Code <ul> Menu by TheKroyaard <li style=”list-style-type: none;margin-top: […]

See, there are many ways to hack a website, about which I do not know, but I will tell you about a plugin, so that when someone enters the password more than twice, then for 24 hours that user will have to login again. will not be allowed. WPS Limit Login You install and setup […]

Show category wise related item/post without using any type of Plugins, Just paste simple code in your theme, Then SAVE and take advantage. Code <?php $catArgs = array( ‘category__in’ => wp_get_post_categories($post->ID), ‘showposts’ => 3,//display number of posts ‘orderby’ =>’rand’,//display random posts ‘post__not_in’ => array($post->ID) ); $cat_post_query = new WP_Query($catArgs); if( $cat_post_query->have_posts() ) { echo ‘<div […]