Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ahmedmusawir/a75063c6efca12993c894919f7464ec5 to your computer and use it in GitHub Desktop.
Save ahmedmusawir/a75063c6efca12993c894919f7464ec5 to your computer and use it in GitHub Desktop.
WP - SHORTCODE MODUES - 2 [IMPLEMENTATION]
get_header(); ?>
<section id="OI-SECTION-ONE" class="oi-module">
<?php echo do_shortcode('[module_three]'); ?>
</section>
<section id="OI-SECTION-TWO" class="oi-module">
<?php echo do_shortcode('[module_two]'); ?>
</section>
<section id="OI-SECTION-THREE" class="oi-module">
<?php echo do_shortcode('[module_one]'); ?>
</section>
<section id="OI-SECTION-FOUR" class="oi-module">
<?php echo do_shortcode('[module_four]'); ?>
</section>
<section id="OI-SECTION-ONE" class="oi-module">
<?php echo do_shortcode('[module_three]'); ?>
</section>
<?php
get_footer();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment