This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php // Slider Shortcode | |
function inds_owl_slider() { | |
register_post_type( 'inds-slider', array( | |
'labels' => array( | |
'name' => 'Sliders', | |
'add_new' => 'Add New Slider', | |
'add_new_item' => 'Add New Slider', | |
'edit_item' => 'Edit Slider', | |
), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once( get_template_directory() . '/inc/cs-framwork/cs-framework.php'); | |
function indst_tm_opt_mtbx($options){ | |
$options = array(); | |
$options[] = array( | |
'id' => 'indst_tm_slide_meta', | |
'title' => 'Slider Options', | |
'post_type' => 'inds-slider', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Shortcode practise | |
*/ | |
function query_shortcode($attr, $content = null) { | |
extract( shortcode_atts( array( | |
'type' => 'post', | |
'count' => 3, |
NewerOlder