How To Create table with plugin creating and active in WordPress

you will almost certainly find database table that you need to store some information in the WordPress database. Create Database Tables The first step in making your plugin create database tables automatically is to create a custom PHP function within your plugins that adds a table or tables to the WordPress MySQL database. So, it … Read more

Get values from an options page from Acf Repeater

we can be used  get field from an options page, however, a second parameter is required to target the options page in using while loop and get filed value show and front and for get display filed <p><?php the_field(‘field_name’, ‘option’); ?></p> <?php $variable = get_field(‘field_name’, ‘option’); // do something with $variable ?> <?php if( have_rows(‘repeater’, … Read more

Search filter using meta query with wp query

Ajax WP Query Search Filter is a powerful ajax search engine that let your user perform more precisely search by filtering the search through post type, taxonomy and meta field search filter using ajax and meta_query with wp_query following this step 1 user the create a search filter search form : <form method=”POST” action=”” id=”search_form” enctype=”multiple/type”> <h3><font style=”vertical-align: inherit;”><font style=”vertical-align: inherit;”>Key words </font></font></h3> <div … Read more

How to assign a class “active” to the li click event using jQuery or JavaScript

I am trying to create a menu where a class “active” is assigned to the page whenever it’s selected and loaded and following this using javascript my menu its custom <ul class=”nav navbar-nav”> <li class=”active”><a href=”http://localhost/wp/index.php”>Main</a></li> <li><a href=”http://localhost/wp/news”>News</a></li> <li><a href=”http://localhost/wp/contacts”>Contacts</a></li> </ul> Its working at my end use this <script> jQuery(document).ready(function() { jQuery(“.nav.navbar-nav li”).click(function(){ jQuery(“.nav.navbar-nav li”).removeClass(‘active’); … Read more