array ( 'name' => 'post_thumbnail', 'type' => 'text', 'title' => __('Post Thumbnail'), 'desc' => __(''), 'label' => __('Thumbnail Values') ), 'dd_fthumb' => array ( 'name' => 'slider_image', 'type' => 'text', 'title' => __('Slider Image'), 'desc' => __(''), 'label' => __('Slider Image Values') ), 'dd_only_image' => array( 'name' => 'only_image', 'type' => 'checkbox', 'title' => __('Only Image in the Sliding Panel'), 'desc' => __('By default, theme will display image and title in the sliding panel. Check this if you want title not to be shown.') ), ); return apply_filters( 'dd_post_meta_boxes', $meta_boxes ); } /** * Array of variables for portfolio meta boxes. Make the * function filterable to add options through child themes. * * @since 0.3 * @return array $meta_boxes */ function dd_portfolio_meta_boxes() { global $dd_categories; /* Array of the meta box options. */ $meta_boxes = array( 'dd_pvideo' => array ( 'name' => 'portfolio_full', 'type' => 'text', 'title' => __('Portfolio Video'), 'desc' => __(''), 'label' => __('Link to web page that hosts Video'), ), ); return apply_filters( 'dd_portfolio_meta_boxes', $meta_boxes ); } /** * Array of variables for page meta boxes. Make the * function filterable to add options through child themes. * * @since 0.3 * @return array $meta_boxes*/ function dd_page_meta_boxes() { // Array of the meta box options. $meta_boxes = array( ); return apply_filters( 'dd_page_meta_boxes', $meta_boxes ); } /** * Displays meta boxes on the Write Post panel. Loops * through each meta box in the $meta_boxes variable. * Gets array from dd_post_meta_boxes(). * * @since 0.3 */ function post_meta_boxes() { global $post; $meta_boxes = dd_post_meta_boxes(); ?> ID, $meta['name'], true ); if ( $meta['type'] == 'text' ) get_meta_text_input( $meta, $value ); elseif ( $meta['type'] == 'textarea' ) get_meta_textarea( $meta, $value ); elseif ( $meta['type'] == 'select' ) get_meta_select( $meta, $value ); elseif ( $meta['type'] == 'childselect' ) get_meta_childselect( $meta, $value ); elseif ( $meta['type'] == 'checkbox' ) get_meta_checkbox( $meta, $value ); endforeach; ?>
ID, $meta['name'], true ); if ( $meta['type'] == 'text' ) get_meta_text_input( $meta, $value ); elseif ( $meta['type'] == 'textarea' ) get_meta_textarea( $meta, $value ); elseif ( $meta['type'] == 'select' ) get_meta_select( $meta, $value ); elseif ( $meta['type'] == 'childselect' ) get_meta_childselect( $meta, $value ); elseif ( $meta['type'] == 'checkbox' ) get_meta_checkbox( $meta, $value ); endforeach; ?>
ID, $meta['name'], true ) ); if ( $meta['type'] == 'text' ) get_meta_text_input( $meta, $value ); elseif ( $meta['type'] == 'textarea' ) get_meta_textarea( $meta, $value ); elseif ( $meta['type'] == 'select' ) get_meta_select( $meta, $value ); elseif ( $meta['type'] == 'checkbox' ) get_meta_checkbox( $meta, $value ); endforeach; ?>

value="1" id="" name=""> ID, $szKey, true); if ( $bPrint == false ) return $szValue; else echo $szValue; } ?>