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