30 March 2021

Menu And Home Page Dynamic in word Code

  <ul class="nav navbar-nav navbar-right">

           <?php
wp_nav_menu(array(
'theme_location' => 'main menu',
'container' => 'ul',
'menu_class' => 'nav navbar-nav navbar-right collapse navbar-collapse',
'sub_menu_class' => 'sub-menu',
));
?>
          </ul>

/***  Wordpress plugin for making dynamic home page content and header top bar and footer ***/

1. Option Tree Download link and shortcode

 Link :-     https://wordpress.org/plugins/option-tree/

Short Code : <?php echo ot_get_option('field_name); ?>

2. Advanced Custom Fields Or Acf Repeater

ACF Download Link :  https://wordpress.org/plugins/advanced-custom-fields/

ACF Repeater Download Link : https://wordpress.org/plugins/advanced-custom-fields/

Short Code : -

<?php
$i = "delay-1";
if(have_rows('field_name')) :
while(have_rows('field_name')) : the_row(); ?>

<div class="support-icon block animatable bounceInLeft <?php echo $i++;  ?>">

<i class="<?php the_sub_field('field_name1'); ?>" aria-hidden="true"></i>
</div>

<?php the_sub_field('about_us_services_title'); ?>

<?php endwhile; endif;  ?>

Short Code 1 :-

<?php the_field('field_name'); ?>

3. Wordpress Mega Menu Download Link :

Download Link : -  https://wordpress.org/plugins/megamenu/