I’m using WP education theme by Vuzzu.
This is the following code for the current content boxes on the homepage as we speak. Found in the template-home.php file.
get_header(); ?>
<div class="container container_12">
<?php get_sidebar(); ?>
<!-- BEGIN CONTENT -->
<div class="content alignleft">
<div class="grid_8 conimage"><a href="https://franchisesociety.com/event-registration/"><img class="alignright" src="https://franchisesociety.com/wp-content/uploads/2016/11/2017-ISOF-CONFERENCE-BANNER.jpg" alt="" /></a></div>
<?php
if(have_posts()) : the_post();
echo '<div class="grid_8">';
the_content();
echo '</div>';
endif;
// Showing featured news
if( !get_option('vz_options_home_featuredarticles_disabled') ) vz_home_featured();
dynamic_sidebar('Home-feeds');
// Showing home news block
if( !get_option('vz_options_home_newsblock_disabled') ) vz_home_news();
// Showing home events block
if( !get_option('vz_options_home_eventsblock_disabled') ) vz_home_events();
// Showing new sidebar
dynamic_sidebar('Home-bottom');
?>
</div>
<!-- END CONTENT -->
</div>
<?php get_footer(); ?>
As you can see, it has the “events, featured posts, and news” referenced here. I’m assuming I would have to add content boxes by switching something out?
-
This reply was modified 8 years ago by babussell2.