How to add numbers pagination to this blog page?

First of all you need to get the paged query variable and pass it to your main query args: //Protect against arbitrary paged values $paged = ( get_query_var( ‘paged’ ) ) ? absint( get_query_var( ‘paged’ ) ) : 1; $args = array( ‘post_type’ => ‘post’ ‘paged’ => $paged, ); Then you have to add the … Read more

Blog page with posts from specific categories

Please add following code $args = array( ‘post_type’ => ‘post’, ‘post_status’ => ‘publish’, ‘category__and’ => array( 2, 6 ), ‘posts_per_page’ => 1, ); $arr_posts = new WP_Query( $args ); OR $tax_query = array( relation => ‘AND’, array( ‘taxonomy’ => ‘category’, ‘field’ => ‘term_id’, // ‘term_id’ by default, so just here as an example ‘terms’ => … Read more

How to add a “Who’s who” on a wordpress blog post?

You can add this to your single the_author_posts_link(); But, you can use plugin for author box if you want to do it more simple and had more options like put the social links, website links, even the gravatar. and for the author page, it will use this template. author-{nicename}.php – If the author’s nice name … Read more