We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For instance, change footer.php from this:
<?php /** * EA Starter * * @package EAStarter * @since 1.0.0 * @copyright Copyright (c) 2014, Contributors to EA Genesis Child project * @license GPL-2.0+ */ ?> <?php ea_structural_wrap( 'site-inner', 'close' ); ?> </div> <?php tha_footer_before(); ?> <footer class="site-footer" role="contentinfo"> <?php ea_structural_wrap( 'footer' ); ?> <?php tha_footer_top(); ?> <?php tha_footer_bottom(); ?> <?php ea_structural_wrap( 'footer', 'close' ); ?> </footer> <?php tha_footer_after(); ?> </div> <?php tha_body_bottom(); ?> <?php wp_footer(); ?> </body> </html>
To this:
<?php /** * EA Starter * * @package EAStarter * @since 1.0.0 * @copyright Copyright (c) 2014, Contributors to EA Genesis Child project * @license GPL-2.0+ */ ea_structural_wrap( 'site-inner', 'close' ); echo '</div>'; tha_footer_before(); echo '<footer class="site-footer" role="contentinfo">'; ea_structural_wrap( 'footer' ); tha_footer_top(); tha_footer_bottom(); ea_structural_wrap( 'footer', 'close' ); echo '</footer>'; tha_footer_after(); echo '</div>'; tha_body_bottom(); wp_footer(); echo '</body>'; echo '</html>';
The text was updated successfully, but these errors were encountered:
@jaredatch take a look at issue/1 and let me know what you think.
Sorry, something went wrong.
d269c19
No branches or pull requests
For instance, change footer.php from this:
To this:
The text was updated successfully, but these errors were encountered: