A Simple and Lightweight WordPress Option Framework for Themes and Plugins

Overview

Codestar Framework

Codestar Framework

A Simple and Lightweight WordPress Option Framework for Themes and Plugins. Built in Object Oriented Programming paradigm with high number of custom fields and tons of options. Allows you to bring custom admin, metabox, taxonomy and customize settings to all of your pages, posts and categories. It's highly modern and advanced framework.

Contents

Demo

For usage and examples, have a look at 🚀 online demo

Installation

  1. Download the installable WordPress plugin zip.
  2. Upload and active plugin from WordPressPluginsAdd New
  3. After activation, next step is to configure your settings. You can do it from here ⚙️ configurations

Quick Start

Open your current theme functions.php file and paste this code.

// Check core class for avoid errors
if( class_exists( 'CSF' ) ) {

  // Set a unique slug-like ID
  $prefix = 'my_framework';

  // Create options
  CSF::createOptions( $prefix, array(
    'menu_title' => 'My Framework',
    'menu_slug'  => 'my-framework',
  ) );

  // Create a section
  CSF::createSection( $prefix, array(
    'title'  => 'Tab Title 1',
    'fields' => array(

      // A text field
      array(
        'id'    => 'opt-text',
        'type'  => 'text',
        'title' => 'Simple Text',
      ),

    )
  ) );

  // Create a section
  CSF::createSection( $prefix, array(
    'title'  => 'Tab Title 2',
    'fields' => array(

      // A textarea field
      array(
        'id'    => 'opt-textarea',
        'type'  => 'textarea',
        'title' => 'Simple Textarea',
      ),

    )
  ) );

}

How to get option value ?

$options = get_option( 'my_framework' ); // unique id of the framework

echo $options['opt-text']; // id of the field
echo $options['opt-textarea']; // id of the field

Documentation

Read the documentation for details 📕 documentation

Free vs Premium

Features Free Version Premium Version
Admin Option Framework ✔️ ✔️
Customize Option Framework ✔️
Metabox Option Framework ✔️
Nav Menu Option Framework ✔️
Taxonomy Option Framework ✔️
Profile Option Framework ✔️
Comment Option Framework ✔️
Widget Option Framework ✔️
Shortcode Option Framework ✔️
All Option Fields ✔️
Developer Packages ✔️
Unminfy Library ✔️
New Requests ✔️
Autoremove Advertisements ✔️
Life-time access/updates ✔️
🌟 Upgrade Premium Version

Available Option Fields

Accordion Color Icon Select Tabbed
Background Color Group Image Select Slider Text
Backup Date Link Color Sortable Textarea
Border Dimensions Media Sorter Typography
Button Set Fieldset Palette Spacing Upload
Checkbox Gallery Radio Spinner WP Editor
Code Editor Group Repeater Switcher Others

Support

We are provide support forum for premium version users. You can join to support forum for submit any question after purchasing. Free version users support is limited on github.

Release Notes

Check out the release notes

License

Codestar Framework have two different version. Free version has limited features and offers only admin option panel feature. Premium version offers all extensions and more of settings for the best experience and advanced features. You can bundle the framework ( both free and premium ) in the premium theme/plugin and sell them on your own website or in marketplaces like ThemeForest. This framework is licensed 100% GPL.

Comments
  • CSF multilanguage problem.

    CSF multilanguage problem.

    Hello I have set a multi-language option for my plugin and I used csf for settings, but the language did not change in csf. I tried the admin_init, csf_init and csf_loaded hooks.

    'id' => 'design_settings', 'title' => lsph__( 'Design options' ), 'icon' => 'fa fa-palette', 'fields' => array(

    // Multi language add_action( "init", "lsph_multi_language" ); add_action( "csf_loaded", "lsph_multi_language" ); function lsph_multi_language(){ load_plugin_textdomain( 'lsph', false, LSPH_LANG ); }

    opened by BeycanDeveloper 17
  • Lack of description on Hooks and Actions in documentation

    Lack of description on Hooks and Actions in documentation

    Hello!

    How to initialize actions by framework options?

    For example I need to register an sidebar by checking a "checkbox" in themes options page made with codestar framework. So i have an action code, how to start that code? If i put action code in functions.php file, the code runs as soon as i save the file. I want to run that code only after theme options are changed.

    opened by Pb164 17
  • Color picker issues

    Color picker issues

    I bought your premium version a few months ago. Is it possible to replace wp color picker with another framework such as spectrum in the next update? I have already encountered the following error in console log and had to disable its code in your framework: TypeError: (new Color (...)). SetHSpace is not a function

    opened by Alimir 12
  • Empty options default value issue!

    Empty options default value issue!

    We have a major issue! ‌ When we remove the value in the select option, it puts the default value after saving. https://github.com/Alimir/wp-ulike/commit/53149a1b4b2c80a85ed5ac7a99db173081e9912e

    opened by Alimir 11
  • Google font is loading only home page

    Google font is loading only home page

    Hello, I updated Codestar Framework latest version(2.2.2) with my WordPress Theme. When I select font for heading, it loads only in Home page, not in others page like category, single post etc. I used such structure for my theme. Kindly help me to solve this issue.

            array(
                'id' => 'heading-one-typo',
                'type' => 'typography',
    
                'output' => 'h1',
                'default' => array(
                    'color' => '#1c1c1c',
                    'font-family' => 'Montserrat',
                    'font-weight' => '700',
    	    'font-size' => '42',
                    'line-height' => '50',
                    'subset' => 'latin-ext',
                    'text-align' => 'left',
                    'type' => 'google',
                    'unit' => 'px',
                    'letter-spacing' => false,
                ) ,
                'extra-styles' => array(
                    '300',
                    '400',
                    '500',
                    '600',
                    '800',
                    '900'
                ) ,
            ) ,
    
    opened by Khaledgy65 9
  • Option doesn't appear on the site

    Option doesn't appear on the site

    Hi! I'm trying to display the option on the site, but something doesn't work.

    in function.php I add:

    if( class_exists( 'CSF' ) ) {
    
    	$prefix = 'my_framework';
    
    	CSF::createOptions( $prefix, array(
    		'menu_title' => 'MyFramework',
    		'menu_slug'  => 'my-framework',
    		'menu_icon'  => 'dashicons-star-filled',
    		'framework_title' => 'MyFramework'
    	) );
    
    	// Create a section
    	CSF::createSection( $prefix, array(
    		'id'    	  => 'my-settings',
    		'title'       => 'Settings',
    	) );
    
    	CSF::createSection( $prefix, array(
    		'parent'      => 'my-settings',
    		'title'       => 'Footer',
    		'fields'      => array(
    
    		array(
    		  'id'     => 'my-settings-footer',
    		  'type'   => 'tabbed',
    		  'tabs'   => array(
    
    			array(
    			  'title'     => 'Layout',
    			  'fields'    => array(
    
    				array(
    					'id'        => 'my-settings-footer-layout',
    					'type'      => 'image_select',
    					'options'   => array(
    						'layout01' => 'http://img1.gif',
    						'layout02' => 'http://img2.gif',
    						'layout03' => 'http://img3.gif',
    						'layout04' => 'http://img4.gif',
    					),
    					'default'   => 'layout01',
    				),
    
    			)),
    		))
    
    		)
    	) );
    }
    

    In footer.php I add:

    <?php $options = get_option( 'my_framework' );
    echo $options['my-settings-footer-layout'];
    ?>
    

    I want to display default value 'layout01' or selected value on the dashboard. Nothing is displayed now. Can you help?

    opened by Radzio1615 9
  • Select field value return the options key, can not get value

    Select field value return the options key, can not get value

    This is my options field -

    array(
        'id'          => 'skill-select-opt',
        'type'        => 'select',
        'title'       => 'Select Progress Bar Color Name',
        'placeholder' => 'Select an Color Name',
        'options'     => array(
            'option-1'  => 'bg-primary',
            'option-2'  => 'bg-secondary',
            'option-3'  => 'bg-success',
            'option-4'  => 'bg-danger',
            'option-5'  => 'bg-warning',
            'option-6'  => 'bg-info',
            'option-7'  => 'bg-light',
            'option-8'  => 'bg-light',
        ),
        'default'     => 'option-1'
    ),
    

    I got this from options by var_dump() -

    Array
    (
        [0] => Array
            (
                [skill-label] => HTML
                [skill-parcent] => 95
                [skill-select-opt] => option-1
            )
    
        [1] => Array
            (
                [skill-label] => CSS
                [skill-parcent] => 70
                [skill-select-opt] => option-4
            )
    )
    

    I need to have the bg-primary, bg-success etc as my value, but I got the option-1, option-2 instead.

    How can I get the value instead of the key??

    Kind regards.

    opened by tarekhossen71 7
  • CSF Underscore not working

    CSF Underscore not working

    Hello,

    I am trying to create a framework, using the plugin of yours, but it only gives me the default one. Not even the checkbox is working. I get all the files and I can’t use my prefix.

    Any thoughts?

    opened by xitrom 7
  • A couple of questions about the framework

    A couple of questions about the framework

    Hi guys

    I'm interested in getting the pro version but had a couple of questions.

    1. Does your Customizer feature include postmessage support?

    2. Does your Customizer feature support all normal Customizer hooks and filters? For example https://developer.wordpress.org/reference/hooks/customize_save_after/

    3. On your demo I only see px and em in your fields. Do you have a rem option as well? And if yes, can it be used in all your field types (eg. typography)? New CSS frameworks like Tailwind use rem for everything.

    4. ACF includes support for showing options pages on the frontend. Is it possible to display Codestar options pages on the front end too?

    5. Can options be saved as both arrays (single entry in wp_options) or separate entries?

    6. Can we specify the wp_options field name ourselves? For example if we want to map a field to an existing option for another plugin.

    Thanks!

    opened by binaryfire 7
  • Customizer controls and _.js

    Customizer controls and _.js

    Hi Codestar,

    Thanks for this great plugin :)

    Do you know WordPress recommended to use content_template() function instead of render_content() for adding new custom controls in customizer?

    You can read full story here: https://developer.wordpress.org/themes/customize-api/javascriptunderscore-js-rendered-custom-controls/

    This way with Underscore.js will improve customizer page speed performance and also switching themes will load new controls without page refresh.

    Regards

    opened by Codevz 7
  • Hello!  When the Codestar Framework is two, the titles of each other get confused.

    Hello! When the Codestar Framework is two, the titles of each other get confused.

    Hello, it uses a theme codestar framework and one plugin is using the room codestar framework and their data is getting confused. How can I avoid this?

    opened by BeycanDeveloper 7
  • Allow select to query users with custom query

    Allow select to query users with custom query

    This will allow passing arguments to WP_User_Query, like 'role__in' to fine tune the results.

    Also, the documentation could use better explanation that there's a $term variable.

    opened by LC43 0
  • How can I display fields depend on roles?

    How can I display fields depend on roles?

    I want to create some fields but be available depend on user role How can I do that?

    2-Can I add additional input to the comment form that allow users to use it with their comments?

    opened by meno010 0
  • On Save Hooks and displaying a custom message

    On Save Hooks and displaying a custom message

    I am using the Admin Options framework, and considering the full version for Customizer etc.

    For the Admin Options, I came across an "After Save" hook, but I don't see a way to have it also display a custom message, and the documentation is very light on those hooks. Can you point out how to display a custom message at the top, like a normal Admin Notice, when I hook in to "After Save" and run a function, and then display a message from that function?

    Specifically:

    csf_{$prefix}_save_after or csf_{$prefix}_saved hooks

    and

    csf_{$prefix}_save filter

    Also, details on how to use csf_welcome_page, csf_dev_mode, csf_{$prefix}_output_css, etc. Providing example code for these in the docs would go a long way towards helping developers or their managers justify a purchase request or decision, when the documentation is very good and complete. Thanks so much.

    opened by presswizards 0
Releases(2.2.9)
  • 2.2.9(Nov 21, 2022)

    • Added: WordPress 6.1 compatible.
    • Fixed: Added check/uncheck all option for checkbox field.
    • Updated: Google Web Fonts array added new fonts.
    • Updated: JS libraries (codemirror, leaflet, etc).
    • Improved: Some JS and CSS coding.
    Source code(tar.gz)
    Source code(zip)
  • 2.2.8(Apr 13, 2022)

  • 2.2.7(Mar 21, 2022)

    • Added: Number field "min", "max", "step" options.
    • Updated: Google Web Fonts array added new fonts.
    • Updated: JS libraries (codemirror, leaflet, etc).
    • Improved: Group field "custom title and prefix" option (samples added).
    • Improved: Some JS and CSS coding.
    Source code(tar.gz)
    Source code(zip)
  • 2.2.6(Jan 8, 2022)

  • 2.2.5(Dec 17, 2021)

    • Added: Dependency new "contains" condition feature.
    • Fixed: Admin bar menu show in for non-admin capabilities.
    • Updated: Google Web Fonts array added 300+ new fonts.
    • Updated: "Font Awesome 5 Free" package and added new icons.
    • Updated: JS libraries (codemirror, leaflet, etc).
    • Improved: "Shortcode" and "Icon" modal popups responsive css.
    • Improved: Usage anywhere framework fields.
    Source code(tar.gz)
    Source code(zip)
  • 2.2.4(Aug 9, 2021)

    • Added: WordPress 5.8 compatible.
    • Fixed: Widget Framework after WP 5.8 block-based widgets issue.
    • Fixed: Shortcode Framework "E"lementor" php8 error throw issue.
    • Updated: Google Web Fonts array.
    • Updated: "Font Awesome 5 Free" package and added new icons.
    • Updated: JS libraries (codemirror, leaflet, etc).
    • Improved: Some js and css coding.
    Source code(tar.gz)
    Source code(zip)
  • 2.2.2(Mar 28, 2021)

    • Added: WordPress 5.7 compatible.
    • Fixed: Spinner field unit issue in repeater fields.
    • Fixed: Media field svg preview issue.
    • Updated: Google Web Fonts array.
    • Updated: "Font Awesome 5 Free" package and added new icons.
    • Updated: JS libraries (codemirror, leaflet, etc).
    • Improved: Mobile device styles.
    • Improved: Multiple instances for avoid potential conflicts.
    • Improved: Callback field for class method calls.
    Source code(tar.gz)
    Source code(zip)
  • 2.2.1(Dec 31, 2020)

    • Added: Metabox sections can be show by specific post_type option.
    • Added: Inline tabs style for Metabox and Options Frameworks.
    • Added: Nav menu "locations" select field options.
    • Fixed: Minor bug fixes and improvements.
    • Improved: Path-finder function for fix issue missing styles.
    Source code(tar.gz)
    Source code(zip)
  • 2.2.0(Nov 1, 2020)

    • Added: Output feature for Taxonomy Framework fields.
    • Fixed: Option Framework first section "restore" issue.
    • Fixed: Link field open dialog issue.
    • Updated: Google Web Fonts array.
    • Updated: JS libraries (codemirror, leaflet, etc).
    • Updated: "Font Awesome 5 Free" package and added new icons.
    • Improved: Typography field enqueue methods.
    Source code(tar.gz)
    Source code(zip)
  • 2.1.9(Oct 9, 2020)

    • Added: New field "link" using wplink.
    • Added: Image field "inline" list style.
    • Improved: Data sanitization and escaping.
    • Improved: RTL styles.
    Source code(tar.gz)
    Source code(zip)
  • 2.1.8(Sep 6, 2020)

    • Added: Localized 20+ languages support.
    • Improved: Group/Repeater nested usage feature.
    • Improved: Font Awesome 4 package usage.
    • Updated: "Font Awesome 5 Free" package and added new icons.
    • Updated: Google Web Fonts array.
    • Fixed: Shortcode Framework usage inside plugin issue.
    • Fixed: Spinner and Slider field fractional numbers step validation issue.
    Source code(tar.gz)
    Source code(zip)
  • 2.1.7(Jun 18, 2020)

    • Fixed: Sortable field append new fields after saved issue.
    • Fixed: Customizer dependency issue after v2.1.6 update.
    • Fixed: Typography field "Normal 400" style embed issue.
    • Updated: Assets library (csf.css to style.css, csf.js to main.js).
    • Improved: Sanitize/Validate callback method.
    • Improved: Global dependency feature.
    Source code(tar.gz)
    Source code(zip)
  • 2.1.6(Jun 2, 2020)

    • Added: Nav Menu Option Framework (bonus).
    • Added: Section "class" paramter for Admin, Metabox Option Frameworks.
    • Added: Fields with output css feature can be used in Accordion, Tabbed and Fieldset fields.
    • Added: Visible dependency instead of hiding.
    • Fixed: Background field gradient transparent issue.
    • Improved: Admin Option Framework tab anchors (#tab-1, #tab-2 etc.) with the actual tab names.
    • Improved: Data sanitization and escaping.
    • Improved: All of framework scripts and styles loads only when needed.
    • Improved: Output css feature and documentation.
    • Improved: Network menus and options integration.
    • Improved: Google web fonts load method.
    • Improved: Some js and css coding.
    Source code(tar.gz)
    Source code(zip)
  • 2.1.5(May 3, 2020)

    • Added: Sub menu item title argument for Option Framework.
    • Added: A parameter "sanitize => false" for allow to script/iframe or any html code.
    • Fixed: Reset section issue for Option Framework.
    • Fixed: A few bugs fixed caused by sanitize have been.
    • Fixed: Output CSS sanitize issue.
    • Updated: "Font Awesome 5 Free" package and added new icons.
    • Improved: Data sanitization and escaping.
    Source code(tar.gz)
    Source code(zip)
  • 2.1.4(Apr 27, 2020)

    • Added: "Font Awesome 5 Free" package for "Icon" field ( v4 is still can be used ).
    • Added: "Button Set" field custom options types like "Select" field categories, pages etc.
    • Added: New field "callback". This field allows to make custom html output with a function.
    • Added: Data sanitization and escaping for all framework attributes/data.
    • Fixed: Backup field and Ajax-save stripslashes issue.
    • Improved: Form warning message on reset button.
    • Improved: Map search field autocomplete (caching same requests in typing).
    Source code(tar.gz)
    Source code(zip)
  • 2.1.3(Jan 3, 2020)

    • Added: New field "map".
    • Added: Quick save (ctrl+s,command+s) for Option Framework.
    • Added: Form warning when changed any option for Option Framework.
    • Fixed: Output CSS twice times issue.
    • Updated: Google Web Fonts array.
    • Updated: Customizer Framework samples.
    • Improved: Background field for auto hide/show background attributes.
    Source code(tar.gz)
    Source code(zip)
  • 2.1.2(Nov 14, 2019)

    • Added: WP 5.3 "Kirk" UI compatibility.
    • Added: Comment Metabox Framework (bonus).
    • Added: New field "number".
    • Fixed: Media field dependency issue.
    • Fixed: Button set field default selected issue.
    • Fixed: Select field empty message issue.
    • Fixed: Multiple chosen select issue in Shortcode Framework.
    • Fixed: Checkbox field confict with Repeater and Group field issue.
    • Fixed: Image Select and Multiple Checkbox fields refresh issue in Customize Framework.
    Source code(tar.gz)
    Source code(zip)
  • 2.1.1(Sep 17, 2019)

    • Added: Chosen select AJAX search option.
    • Added: Chosen select sortable option.
    • Added: Chosen select keep options order.
    • Added: Users select field options.
    • Fixed: Single shortcode insert issue.
    • Fixed: Taxonomy Framework multiple save issue.
    • Fixed: Widgets Framework chosen select save issue.
    • Fixed: Chosen multiple select refresh issue in Customizer.
    • Fixed: Minor bug fixes and improvements.
    Source code(tar.gz)
    Source code(zip)
  • 2.1.0(Jul 10, 2019)

    • Added: SSL protocol control for library files.
    • Added: SCSS style files to main files again.
    • Fixed: Default value issue in Taxonomy Framework.
    • Fixed: Customize option refresh/save issue in existing customizer section.
    Source code(tar.gz)
    Source code(zip)
  • 2.0.9(May 31, 2019)

    • Added: Framework fields support for predefined customizer sections.
    • Fixed: Metabox save php notices when using "serialize" and "unserialize" in same time.
    • Fixed: Multiple instances save data issue.
    • Fixed: Spacing field all_icon parameter.
    • Fixed: Admin options show in customizer parameter "show_in_customizer".
    • Improved: Media field specific type of uploads.
    • Improved: Spacing and dimensions fields unit parameter.
    • Improved: "empty_message" parameter for checkbox, radio and select fields.
    Source code(tar.gz)
    Source code(zip)
  • 2.0.8(May 10, 2019)

    • Added: Framework wrapper classname param as "class" for override css styles.
    • Added: Checkbox and Radio field group option like Select field group.
    • Added: Attachment post type metabox support.
    • Fixed: Auto-filled issue for framework search input.
    • Fixed: Spacing field refresh issue in Customizer.
    • Fixed: Radio field checked issue in category id select.
    • Fixed: Metabox single option save issue.
    • Fixed: Metabox wp editor loaded issue.
    • Improved: Dependency hide/show for a text field after the value is written.
    • Improved: Dependency parameter for multiple conditions.
    Source code(tar.gz)
    Source code(zip)
  • 2.0.7(Mar 19, 2019)

    • Added: Profile Options Framework (bonus).
    • Added: Media field fallback function for easy migration from v1.x to v2.x.
    • Fixed: A minor PHP notice in the Shortcode Generate Framework.
    • Improved: Link Color field output for given array elements.
    • Improved: Elementor integration for Shortcode Generate Framework.
    • Improved: Backup field UI fallback in the Customize Framework.
    • Improved: Global dependency controls.
    Source code(tar.gz)
    Source code(zip)
  • 2.0.6(Mar 6, 2019)

    • Added: Default values from a external array as optional for all frameworks.
    • Added: Widget Title sync support in Widgets Framework.
    • Added: WP Roles select field options.
    • Fixed: Initialization issue inside after_theme_setup action.
    • Fixed: Backup export button issue.
    • Fixed: WP Media uploaded item selected issue.
    • Improved: Reset and Import UI messages in the Customize Framework.
    • Improved: Translation .POT file.
    • Improved: Global dependency controls.
    Source code(tar.gz)
    Source code(zip)
  • 2.0.5(Feb 28, 2019)

    • Added: Dependency controls for among separate sections fields.
    • Added: Border field new border style properties.
    • Added: Taxonomy Framework section title param.
    • Fixed: Metabox section title issue.
    • Fixed: Typography refresh issue in Customizer.
    • Fixed: Group and Repeater fields without title parameter.
    • Fixed: Color field default issue in Background, Typography, Border fields.
    • Fixed: RevSlider CodeMirror conflict.
    • Fixed: Shortcode Generate Framework Group/Repeater nested issue.
    Source code(tar.gz)
    Source code(zip)
  • 2.0.4(Feb 14, 2019)

    • Added: Dark and Light themes.
    • Added: New params to change on/off texts for Switcher field.
    • Added: Shortcode generate framework support for Elementor text editor.
    • Fixed: Sortable and Sorter fields ordering save issue in Customizer.
    • Fixed: Radio, Button Set and Image Select fields issue in Group field.
    • Fixed: Color picker default/clear button issue in Customizer.
    • Improved: RTL style of framework.
    • Improved: Media and Upload fields remove buttons.
    • Improved: Framework style css.
    • Changed: Backup field data type "json" instead of "serialize".
    Source code(tar.gz)
    Source code(zip)
  • 2.0.3(Feb 5, 2019)

    • Added: Widget Options Framework (bonus).
    • Added: Nested Group support.
    • Added: Nested Repeater support.
    • Added: Spanish Translation po/mo.
    • Added: Date range "from" and "to" for Date field.
    • Added: New param "empty_message" if options not provided for Select, Checkbox, Radio.
    • Fixed: Metabox framework php notices in 404 page etc.
    • Fixed: WP Editor field save issue.
    • Improved: Validate email function.
    • Improved: Group field arguments.
    • Improved: Font-Awesome library.
    Source code(tar.gz)
    Source code(zip)
  • 2.0.2(Jan 24, 2019)

    • Added: Page Templates "default" option for spesific metabox hide/show.
    • Added: Post Formats "default" option for spesific metabox hide/show.
    • Added: Only allow number inputs for Spacing, Dimensions, Border, Slider, Spinner, Typography etc.
    • Added: ChosenJS custom options support and improved width and css style.
    • Fixed: Taxonomy framework jquery triggers. It was not working again after saving. It fixed now.
    • Fixed: Code Editor style issue for used inside Group/Repeater.
    • Fixed: Sortable field sortby issue.
    • Fixed: Options panel show in customizer option.
    • Fixed: Media field URL show/hide option issue.
    • Improved: Typography, Color, Spinner, Date, Chosen, Slider fields for used inside Group/Repeater.
    • Improved: All fields javascript triggers for more performance.
    • Improved: Customizer Framework field dependency feature.
    • Improved: Customizer Framework field styles.
    Source code(tar.gz)
    Source code(zip)
  • 2.0.1(Jan 10, 2019)

    • Added: WP Editor AJAX support for Group Field, Repeater Field and Everywhere.
    • Added: Custom palette colors option for Color Picker.
    • Added: Override files feature again.
    • Added: Validate URL function callback.
    • Fixed: Group field save issue.
    • Fixed: Multiple given post formats metabox hide/show issue.
    • Fixed: Minor bugs.
    Source code(tar.gz)
    Source code(zip)
  • 2.0(Jan 10, 2019)

Owner
Codestar
WordPress Developer
Codestar
Create WordPress themes with beautiful OOP code and the Twig Template Engine

Timber helps you create fully-customized WordPress themes faster with more sustainable code. With Timber, you write your HTML using the Twig Template Engine separate from your PHP files.

Timber 5.2k Dec 31, 2022
Add subtitles into your WordPress posts, pages, custom post types, and themes. No coding required.

Add subtitles into your WordPress posts, pages, custom post types, and themes. No coding required. Simply activate Subtitles and you're ready to go.

We Cobble 117 Dec 31, 2022
Boilerplate used to build nearly-headless WordPress themes

Boilerplate for Nearly Headless WordPress Themes This is a plugin boilerplate built using Underpin ,Nicholas, and AlpineJS. It will allow you to build

Nicholas 103 Dec 22, 2022
YesWiki is a wiki system written in PHP, including extensions making collaboration more simple (databases, maps, easy editing, bootstrap themes,...).

YesWiki YesWiki is a Free Software under the AGPL licence, made for creating and managing your website, in a collaborative way. YesWiki allows any web

YesWiki 84 Dec 26, 2022
Wrapping all composer vendor packages inside your own namespace. Intended for WordPress plugins

Wrapping all composer vendor packages inside your own namespace. Intended for WordPress plugins.

Typist Tech 93 Dec 17, 2022
Typecho Themes,bestgril

bestgirl Typecho Themes,bestgirl主题 主题简介 bestgirl主题是一款简约风格的响应式轻主题,基于鹅厂熊大的出租本人创意域名展示页。 此主题适合日志、轻言、诗词、语录、格言、名句、条目、菜谱、记事本、大事记、回忆录等各种轻简短文字类网站。 主题预览 链接:http

null 38 Nov 14, 2022
Plugin Vite is the conduit between Craft CMS plugins and Vite, with manifest.json & HMR support

Plugin Vite Related Articles: Vite.js Next Generation Frontend Tooling + Craft CMS A Vite Buildchain for Craft CMS Plugins Requirements Craft CMS 3.0.

nystudio107 8 Dec 30, 2022
Provides autocompletion for Craft CMS and plugins in Twig templates.

Autocomplete for Craft CMS Provides autocompletion for Craft CMS and plugins in Twig templates. Currently works with PhpStorm only, as VSCode does not

PutYourLightsOn 12 Nov 23, 2021
(Hard) Fork of WordPress Plugin Boilerplate, actively taking PRs and actively maintained. Following WordPress Coding Standards. With more features than the original.

Better WordPress Plugin Boilerplate This is a Hard Fork of the original WordPress Plugin Boilerplate. The Better WordPress Plugin Boilerplate actively

Beda Schmid 46 Dec 7, 2022
Baicloud CMS is a lightweight content management system (CMS) based on PHP and MySQL and running on Linux, windows and other platforms

BaiCloud-cms About BaiCloud-cms is a powerful open source CMS that allows you to create professional websites and scalable web applications. Visit the

null 5 Aug 15, 2022
SoyCMS Trivial - Lightweight and easy-to-use CMS. ( the custom version based on soycms. )

SoyCMS Trivial Author arbk (https://aruo.net/) Licensed under the GPLv2 license Version 3.1.3-t0 DESCRIPTION SoyCMS Trivial is an open source web cont

arbk 1 Oct 18, 2021
Monstra is a modern and lightweight Content Management System.

Monstra is a modern and lightweight Content Management System.

Monstra Content Management 398 Dec 11, 2022
0ez. Laravel Lightweight Blogging CMS

0ez. Laravel Lightweight Blogging CMS Wordpress is old and slow? Too much functions for easy stuff? Try 0ez. It's soo ez! Installation Currently, 0ez

Dinar Garipov 32 Jun 2, 2021
FlatPress is a lightweight, easy-to-set-up flat-file blogging engine.

[flatpress.org] [Support forum] [Wiki] [GitHub] [Mastodon] [Twitter] [Changelog] [Contributors] Welcome to FlatPress! FlatPress is a lightweight, easy

FlatPress 143 Dec 22, 2022
CMS and high level framework created with Phalcon framework

KikCMS This video will show you the general UX used for the KikCMS and DataTables created inside the CMS

Kaz 51 Oct 7, 2022
Elefant, the refreshingly simple PHP CMS and web framework.

Elefant is a refreshingly simple PHP content management system and web framework. Elefant is a fast, lean tool for building everything from simple websites to complete web applications.

Aband*nthecar 200 Dec 22, 2022
Security, performance, marketing, and design tools — Jetpack is made by WordPress experts to make WP sites safer and faster, and help you grow your traffic.

Jetpack Monorepo This is the Jetpack Monorepo. It contains source code for the Jetpack plugin, the Jetpack composer packages, and other things. How to

Automattic 1.4k Jan 7, 2023
Wordpress plugin to allow websites to sell and distribute NFTs through the Enjin platform

MyMeta Basket is the world's first plug-and-play Wordpress/Enjin/Ethereum integration that allows you to start selling blockchain assets through your website within minutes. All you need is Wordpress, MyMeta Basket, and an Enjin subscription.

MyMetaverse 6 Oct 3, 2022
Bedrock is a modern WordPress stack that helps you get started with the best development tools and project structure.

WordPress boilerplate with modern development tools, easier configuration, and an improved folder structure

Roots 5.7k Jan 9, 2023