0
(function(w,d,s,c,r,a,m){ w['KiwiObject']=r; w[r]=w[r] || function () { (w[r].q=w[r].q||[]).push(arguments)}; w[r].l=1*new Date(); a=d.createElement(s); m=d.getElementsByTagName(s)[0]; a.async=1; ...
Read
0
// Send GRid with APi key sendemails($to ,$subject,$html,$text);         function sendemails($to ,$subject,$html,$text) {                $pass ='apikey';          ...
Read
0

drupal 7 interview question

1.How to Connect multiple database in drupal 7 2.How cron work in drupal 7 3.How view relation show second image if first image is empty in view without using template file. 4.How to add table in drupal 7 5.How to update table in drupal 7 6.How...
Read
0

How to Use wordpress hooks in wordpress

Hooks Allow us to manipulate data in an easy and safe way. Two types of hooks. 1.Action Hooks: Trigger by an event. Allow us to add our on functions to them when every we want. Used for Stuff like “when X Happens, do y”. 2.Filter Hooks: allow...
Read
0

Gridder Portpolio

We have Developed the Gridder Portpolio Plugin and Deployed in the word press plugin store here you can find the demo of http://wpdadd.com/gridder/ and you can download form WordPress Store BY using using this Gridder portpolio you...
Read
0

How To Use AJAX In WordPress in Three Simple Steps

Step 1:First we need to Add JQuery Script And Need to Initial Ajax Variable Global as shown below add_action( 'init', 'ajax_script_enqueuer' );   function ajax_script_enqueuer() { wp_register_script( "ajax_script", WP_PLUGIN_URL.'/your_plugin/script.js',...
Read
0

How to Create Custom Get Rest Api In WordPress

The WordPress Has In build Rest Api and Also Provides End Points To Create A Rest Api in word press are 1 :Get Methods //End point is : http://wpdadd.com/wp-json/api/v1/getwpdaddstaff   add_action( 'rest_api_init', function () {     ...
Read
0

How to Add www to URL in Wordpreess or php Using Htaccess

ou have a Web Site Called Wpdadd.com and When user try to access you website without www you need to append www at the Domain or if the user is access you page example : wpdadd.com/contact this page need to add www.wpdadd.com/contact follow the below...
Read
0

How to add thumbnail or Image for Beaver Builder Custom Template

When we Create A custom Template In the Beaver Builder .We are not able to Add Custom Thumbnail For that Templates. By Default Beaver Builder Uses Feature Image of template as a Thumbnail and Featured Image is Hidden in Beaver Builder . Beaver Builder...
Read
0

How to Enable WordPress debug and Log error on debug.log

As we Know By Using the Debug We can Solve Any problem in PHP.  The WordPress Also Support the Debugging Concept.To debug we need to enable the Debug First in PHP. The Same Thing is Apply in WordPress...
Read