/** * For displaying content in the standard post format * */ ?> <div id="post-<?php the_ID(); ?> " <?php post_class(); ?> > <?php cleanyetibasic_postheader(); ?> <div class="row"> <div class="entry-content large-12 columns"> <?php cleanyetibasic_content(); ?> </div><!-- .entry-content --> </div> <?php
/** * Create the content for the 404 Error page * * Located in 404.php * Override: childtheme_override_404_content */ function cleanyetibasic_404_content() { ?> <?php cleanyetibasic_postheader(); ?> <div class="entry-content"> <p><?php _e('Apologies, but we were unable to find what you were looking for. Perhaps searching will help.', 'cleanyetibasic'); ?> </p> </div><!-- .entry-content --> <?php get_search_form(); }