How do child themes work?

Child themes are different then parent themes (in this case Twenty Fifteen is the parent theme). Child themes are just copies of your parent themes files. Then you modify those child theme files and they override your parent theme. The advantage of doing this over creating a new theme is that you can update the … Read more

Pagination not working in home page

<?php $the_query = new WP_Query( ‘cat=-7,-3′ ); ?> is the cause of your problems, WordPress has taken care of the pagination, then you’ve thrown it away and not told your new query anything about the page you’re currently on, so it defaults to the first. It’s equivalent to asking someone for a cup of tea, … Read more