Kahanit WP FW

Kahanit WP FW is a wordpress framework used to easily create post types, taxonomies, sidebars, metaboxes, options pages, forms for metaboxes and options pages.

Visit here to post queries.
Visit here to post feedback.
Visit here to post bugs.

Download “Kahanit WP FW”

Screenshots:

Options Pages:

To access options in options page form below is the code

<?php get_option('kwf_option_name') ?>
  • prefix “kwf_” is required
  • option_name is the name of the field

Metaboxes:

To access options in metabox form below is the code

<?php global $post;
get_post_meta($post->ID, 'kwf_option_name'); ?>
  • prefix “kwf_” is required
  • option_name is the name of the field

Repetitive field:

Fields added to repetitive field acts as individual field and the can be accessed as regular field. Rows are defined by the index of the array returned.