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 get_template_directory() . '/inc/cs-framework/cs-framework.php'; | |
function industry_rayhan_theme_metabox ($options) { | |
$options = array(); // remove old options | |
$options [] = array( | |
'id' => 'industry_rayhan_slide_meta', |
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
//industry_rayhan_slide_shortcode start | |
function industry_rayhan_slides_shortcode($atts){ | |
extract( shortcode_atts( array( | |
'count' => 2, | |
'type' => 'page', | |
), $atts) ); | |
$arg = array( | |
'post_type' => 'industry-slide', | |
'posts_per_page' => 3, |
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
//industry_rayhan_shortcode start | |
function industry_rayhan_shortcode($atts){ | |
extract( shortcode_atts( array( | |
'count' => 2, | |
'type' => 'page', | |
), $atts) ); | |
$arg = array( | |
'post_type' => $type, | |
'posts_per_page' => $count, |
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 if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access pages directly. | |
// =============================================================================================== | |
// ----------------------------------------------------------------------------------------------- | |
// METABOX OPTIONS | |
// ----------------------------------------------------------------------------------------------- | |
// =============================================================================================== | |
$options = array(); | |
NewerOlder