Why my site loads too Slow? [closed]

try to minimize the number of plugins… you have used so many have plugins that’s why it’s loading slow… as i can see following are the issues causing your website to load slow.. 1) https://ichnaea.netflix.com/log net::ERR_CERT_AUTHORITY_INVALID – monet.min.js 2) or you can check in google pagespeed test to check which are the things causing your … Read more

WordPress Custom Theme: My site shows the same posts on Page 1 and Page 2 and so on [duplicate]

You need to pass posts_per_page and paged param. $args = array( ‘post_type’ => ‘nutrisense_nieuws’, ‘posts_per_page’ => get_option(‘posts_per_page’); // number of posts to show per page ‘paged’ => get_query_var( ‘paged’, 1 ) // get page if set else page 1, Use “page” for static front page instead of “paged” see the links. ); $the_query = new … Read more

Read more button not working

From the Codex: Excerpts (teasers) can be shown on WordPress through two methods: The first, keeping the the_content() template tag and inserting a quicktag called more at your desired “cut-off” point when editing the post. The second, by replacing the the_content() template tag with the_excerpt(). If one of those conditions is met, and you are … Read more

Custom Headers on Blog Posts Page

If the conditional works when using is_page( ‘products’ ), but does not work when using is_page( ‘blog’ ), then that means that WordPress isn’t finding a static page with the slug blog. First thing to do: verify your slug name. A second alternative is that the static page blog is using a custom page template, … Read more

How to Hide Blog Post Author?

I’d use Firebug in Firefox to see the CSS class used for the author name, then disable display. So, assuming that the css class was called ‘author_name’, I would put this in the styles.css of the child theme that I was using, or in the ‘extra CSS’ area of the theme settings (if available); .author_name … Read more

Not being allowed to use some terms in Add New Site in WordPress

http://codex.wordpress.org/Create_A_Network#Permalinks /blog cannot be used as a new site name. It is relied on heavily by WP for the main site. Everything added to it automatically has /blog as part of the permalink from my understanding You can check out this discussion http://wordpress.org/support/topic/root-directory-blog-for-wordpress-30-main-multisite to see if it helps you out, gives some further options. The … Read more