• File: example.php
  • Full Path: /home/monpetu/www/leoreno.fr/components/example.php
  • Date Modified: 10/29/2024 2:43 PM
  • File size: 678 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php


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

//
// Create taxonomy options
CSF::createTaxonomyOptions($prefix, array(
    'taxonomy'  => array('category'),
    'data_type' => 'serialize', // The type of the database save options. `serialize` or `unserialize`
));

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

        array(
            'id'    => 'opt-text',
            'type'  => 'text',
            'title' => 'Text',
        ),

        array(
            'id'    => 'opt-textarea',
            'type'  => 'textarea',
            'title' => 'Textarea',
        ),

    )
));