Tables not showing divs and loop/php items

In your page template line 42 you will see <?php if ( is_archive() || is_search() ) : //display excerpts for archives and search. ?> <?php the_excerpt(); ?> <?php else : ?> <?php the_content(‘Read More’); ?> <?php endif; ?> This means that there won’t be a heading on archive pages and the_excerpt doesn’t allow html like … Read more

Pulling sub-site content into specific pages

This can be achieved with the help of a plugin. A custom, hand coded, solution can be built analyzing and modifying the code of such plugin(s). Searching for “multisite + widget“, I found one plugin of interest. Multisite Posts Get posts from another child site in a multisite setup. You can also integrate the plugin … Read more

Overwrite URL on blog posts

If you are not using Custom Post Types the following in your permalink settings should work just fine. /blog/%postname%/ Screenshot (Below can still be applicable depending on your use of custom post types) Keep your regular permalinks on blog like you have it in settings. And in your custom post type arguments the “with_front” Boolean … Read more