Category PickPlugins Options Framework

How to Create Taxonomy Edit Fields?

Creating custom post input fields under any taxonomy/category edit page by class.TaxonomyEdit() Files need to add: classes classes Use on the theme: Copy these file under “includes” directory and you can add in your theme directory as follows under “functions.php” file require…

Google Map

Display Google map field Code Sample: array( ‘id’ => ‘google_map_field’, ‘title’ => __(‘Google Map Field’,’text-domain’), ‘details’ => __(‘Description of google map field’,’text-domain’), ‘placeholder’ => __(‘Text value’,’text-domain’), ‘preview’ => true, ‘value’ => array( ‘lat’ => ‘25.75’, ‘lng’ => ‘89.25’, ‘zoom’ =>…

Padding

Display padding input fields Code Sample: array( ‘id’ => ‘padding_field’, ‘title’ => __(‘Padding Field’,’text-domain’), ‘details’ => __(‘Description of padding field’,’text-domain’), ‘value’ => array( ‘top’ => array(‘val’=>’54’, ‘unit’=>’px’ ), ‘right’ => array(‘val’=>’54’, ‘unit’=>’%’ ), ‘bottom’ => array(‘val’=>’54’, ‘unit’=>’em’ ), ‘left’ =>…

Margin

Display margin fields Code Sample: array( ‘id’ => ‘margin_field’, ‘title’ => __(‘Margin Field’,’text-domain’), ‘details’ => __(‘Description of margin field’,’text-domain’), ‘value’ => array( ‘top’ => array(‘val’=>’54’, ‘unit’=>’px’ ), ‘right’ => array(‘val’=>’54’, ‘unit’=>’px’ ), ‘bottom’ => array(‘val’=>’54’, ‘unit’=>’px’ ), ‘left’ => array(‘val’=>’54’,…

Border

Display fields for border css. Code Sample: array( ‘id’ => ‘border_field’, ‘title’ => __(‘Border Field’,’text-domain’), ‘details’ => __(‘Description of border field’,’text-domain’), ‘value’ => array(‘width’=>’54’, ‘unit’=>’%’ , ‘style’=>’solid’, ‘color’=>’#ddd’), ‘default’ => array(‘width’=>’54’, ‘unit’=>’px’ , ‘style’=>’solid’, ‘color’=>’#ddd’), ), Preview:

Switcher

Display switch for On & Off input fields. Code Sample: array( ‘id’ => ‘switcher_2_field’, ‘title’ => __(‘Switcher Field’,’text-domain’), ‘details’ => __(‘Description of switcher field’,’text-domain’), ‘value’ => ”, ‘default’ => ‘2’, ‘args’ => array( ‘on’ => __(‘On’,’text-domain’), ‘off’ => __(‘Off’,’text-domain’), ),…

CreateNavMenus

This class CreateNavMenus  is use to create nav menus location, as register_nav_menus()  function does. File need to include: Following file contain the class, you can include in your theme or plugin or application to use of class. classes Example file: Following file is contain…

InsertPost

This class InsertPost  is use to insert post programmatically, for example you can insert dummy post. File need to include: Following file contain the class, you can include in your theme or plugin or application to use of class. classes Example…

MediaUploadByURL

This class MediaUploadByURL  is use to upload image from external image source url, File need to include: Following file contain the class, you can include in your theme or plugin or application to use of class. classes Example file: Following file…

CreateUser

This class CreateUser  is use to create user programmatically. File need to include: Following file contain the class, you can include in your theme or plugin or application to use of class. classes Example file: Following file is contain example code…

AddThemePage

This class AddThemePage  is use to create custom settings page under dashboard Appearance menu. File need to include: Following file contain the class, you can include in your theme or plugin or application to use of class. classes classes Some input…