How to dowload and edit content of a website

The site you have linked to is a store for WordPress themes, so you would need to pay for and then download the theme files that they give you. You would then need to go to your own WordPress install and install them there (instructions for installing a theme incase you haven’t done this: http://www.wpbeginner.com/beginners-guide/how-to-install-a-wordpress-theme/). … Read more

How to hide blog by id wordpress multisite listing

How about an if statement? <?php $blogs = get_last_updated(‘ ‘, 0, 3); foreach ($blogs AS $blog) {; switch_to_blog($blog[“blog_id”]); $lastposts = get_posts(‘numberposts=1&orderby=date’); foreach($lastposts as $post) : setup_postdata($post); ?> <?php if $blog[“blog_id”] != 1 { ?> // Run the Output if the ID is not X <div class=”col-sm-4 blog-newest”> <!– blog name –> <h3><?php echo $blog_title = … Read more

Second page of archive is empty

How is the archive.php of your own theme looks like? Are you creating your theme based on underscore? You probably missing the get content part after the pagination. For example, here is part of the archive.php based on underscore theme: if ( have_posts() ) : ?> <header class=”page-header”> <?php the_archive_title( ‘<h1 class=”page-title”>’, ‘</h1>’ ); the_archive_description( … Read more