Lines:
1 to 40 of 40
<?php // (C) Copyright Bobbing Wide 2016 if ( PHP_SAPI !== "cli" ) { die(); } /** * Create oik-shortcodes entries programmatically in a batch process * * Syntax: oikwp oik-create-codes.phpurl=jetpack.wp.a2z * when in this directory as the current directory * */ oik_create_codes_loaded(); /* function oik_create_codes_loaded() – Create oik-shortcode entries programmatically */ /* function oik_create_codes_get_all_shortcodes() – Return array of shortcodes and implementing components */ /* function oiksc_shortcodes_components_wordpress() – Implement "oiksc_shortcodes_components" for WordPress shortcodes */ /* function oiksc_shortcodes_components_oik() – Implement "oiksc_shortcodes_components" for ‘oik’ known shortcodes */ /* function oiksc_get_component_name_from_file() – Find component from file name */ /* function oik_create_codes_create_code() – Programmatically create an oik-shortcode */ if ( !function_exists( 'oiksc_get_component_by_name')) { /* function oiksc_get_component_by_name() – Return the component ID for the name */ }View on GitHub