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

Theme Dev | Convert Template to Theme

If you mean you want a widget to control content dynamically from the admin panel, then you can use the Advanced Custom Fields plugin by Elliot Condon to create custom dynamic content and retrieve it every place all over the website. After installing the plugin, simply create fields in the plugin page and get the … Read more

Error while downloading WordPress themes

This might be a problem with slow connection which causes PHP to time out, you can try again later. The alternative is to download the theme zip file to your computer and upload it from there into the site.

WordPress Dashboard Problem [closed]

Do you talk about WordPress.com or independent installation of WordPress.org on your server? These are two different things and your question confused because you mentioned that you have your own hosting also. For WordPress.com, contact their support. They should help you with this if you configured your domain there. If you installed WordPress.org independently on … Read more

Using two stylesheets for mobile compatibility

After further investigations of my own, I determined that the problem was that for whatever reason, both stylesheets were being called at once, rather than independently as they were meant to, and the conflicting instructions caused rendering errors. Rather than referencing the stylesheets in the HTML as above, I rewrote the CSS to incorporate the … Read more