Viewing 1 replies (of 1 total)
  • Plugin Author Abdelrhman elgreatly

    (@elgreatly)

    no pages display in admin page this plugin for make code easier than before use it

    Register meta box :-

    if(function_exists('add_magic_meta_box')){ add_magic_meta_box('first_test_metabox', array(
    'title'     => 'First Test Metabox',
    'pages'     => array('page', 'post', 'custom_type'),
    'context'   => 'normal',
    'priority'  => 'high',
    'fields'    => array(
    array(
    'type' => 'text',
    'name' => 'Text Input',
    'desc' => 'Put Your Name Here ',
    'id' => 'text_one',
    'placeholder' => 'Enter Your Name',
    ),
    )
    );
    }

    you can know more about Magic Meta Box plugin from Documentation
    https://www.mediafire.com/view/6f5wcf690q7gunq/Magic_Meta_Box_Documentation.pdf

Viewing 1 replies (of 1 total)
  • The topic ‘How to access?’ is closed to new replies.