Blog Archives

Fix WordPress Navigation -Same Posts On All Pages Problem

Add this to the custom query: ‘paged’ => get_query_var(‘paged’, 1) Refer: Query Anything On WordPress Anywhere

Posted in WordPress Tagged with: , ,

Modify WordPress Main Query – The Right Way

/** * Modify WordPress Main Query – The Right Way * * @refer  https://millionclues.com/wordpress-tips/modify-wordpress-main-query/ */ function modify_wp_main_query_done_right( $query ) {   if ( $query->is_main_query() ) {     $query->query_vars[‘meta_key’] = ‘statusverified_13141’;     $query->query_vars[‘meta_value’] = 1;   } } add_action( ‘pre_get_posts’, ‘modify_wp_main_query_done_right’ ); Refer WP Query to

Posted in WordPress Tagged with: , ,

7 Reasons Why You Should Choose a WordPress Website for Your Business

One of the top Content Management System (CMS), WordPress has grown to become one of the basic elements powering most websites in the world. High interactivity combined with easy to use interface has made it the first choice for many

Posted in Guest Posts Tagged with: , ,

Git And GitHub For Beginners

An awesome video series on Git and GitHub concepts. No coding experience required to follow.

Posted in WordPress Tagged with: ,

Smooth Scroll Page When Clicking Anchor Link – jQuery

Add this to your jQuery file. // Smooth scroll When Clicking Anchor // @refer https://stackoverflow.com/a/7717572/8255629 var jQueryroot = $(‘html, body’); $(‘a[href^="#"]’).click(function () {   jQueryroot.animate({     scrollTop: $( $.attr(this, ‘href’) ).offset().top   }, 1000);   return false; });

Posted in WordPress Tagged with: , ,