__( 'Logo Only ( First Select Logo Above )', 'acmephoto' ), 'title-only' => __( 'Site Title Only', 'acmephoto' ), 'title-and-tagline' => __( 'Site Title and Tagline', 'acmephoto' ), 'disable' => __( 'Disable', 'acmephoto' ) ); return apply_filters( 'acmephoto_header_id_display_opt', $acmephoto_header_id_display_opt ); } endif; /** * Global layout options * * @since AcmePhoto 1.0.0 * * @param null * @return array $acmephoto_default_layout * */ if ( !function_exists('acmephoto_default_layout') ) : function acmephoto_default_layout() { $acmephoto_default_layout = array( 'fullwidth' => __( 'Fullwidth', 'acmephoto' ), 'boxed' => __( 'Boxed', 'acmephoto' ) ); return apply_filters( 'acmephoto_default_layout', $acmephoto_default_layout ); } endif; /** * Sidebar layout options * * @since AcmePhoto 1.0.0 * * @param null * @return array $acmephoto_sidebar_layout * */ if ( !function_exists('acmephoto_sidebar_layout') ) : function acmephoto_sidebar_layout() { $acmephoto_sidebar_layout = array( 'right-sidebar' => __( 'Right Sidebar', 'acmephoto' ), 'left-sidebar' => __( 'Left Sidebar' , 'acmephoto' ), 'no-sidebar' => __( 'No Sidebar', 'acmephoto' ) ); return apply_filters( 'acmephoto_sidebar_layout', $acmephoto_sidebar_layout ); } endif; /** * Pagination Options * * @since AcmePhoto 1.0.0 * * @param null * @return array $acmephoto_pagination_options * */ if ( !function_exists('acmephoto_pagination_options') ) : function acmephoto_pagination_options() { $acmephoto_pagination_options = array( 'default' => __( 'Default', 'acmephoto' ), 'numeric' => __( 'Ajax Loading', 'acmephoto' ) ); return apply_filters( 'acmephoto_pagination_options', $acmephoto_pagination_options ); } endif; /** * Button Options * * @since AcmePhoto 1.0.0 * * @param null * @return array acmephoto_feature_button_options * */ if ( !function_exists('acmephoto_feature_button_options') ) : function acmephoto_feature_button_options() { $acmephoto_feature_button_options = array( 'search' => __( 'Show Search', 'acmephoto' ), 'read-more' => __( 'Show Read More', 'acmephoto' ), 'hide' => __( 'Hide', 'acmephoto' ) ); return apply_filters( 'acmephoto_feature_button_options', $acmephoto_feature_button_options ); } endif; /** * Button Options * * @since AcmePhoto 1.0.0 * * @param null * @return array acmephoto_menu_position_options * */ if ( !function_exists('acmephoto_menu_position_options') ) : function acmephoto_menu_position_options() { $acmephoto_menu_position_options = array( 'top-normal' => __( 'Top Normal', 'acmephoto' ), 'top-fixed' => __( 'Top Fixed', 'acmephoto' ), 'below-feature' => __( 'Below Feature', 'acmephoto' ) ); return apply_filters( 'acmephoto_menu_position_options', $acmephoto_menu_position_options ); } endif; /** * * Reset post * * @since AcmePhoto 1.0.0 * * @param null * @return array * */ if ( !function_exists('acmephoto_reset_options') ) : function acmephoto_reset_options() { $acmephoto_reset_options = array( '0' => __( 'Do Not Reset', 'acmephoto' ), 'reset-color-options' => __( 'Reset Colors Options', 'acmephoto' ), 'reset-all' => __( 'Reset All', 'acmephoto' ) ); return apply_filters( 'acmephoto_reset_options', $acmephoto_reset_options ); } endif; /** * Default Theme Options * * @since AcmePhoto 1.0.0 * * @param null * @return array $acmephoto_default_theme_options * */ if ( !function_exists('acmephoto_get_default_theme_options') ) : function acmephoto_get_default_theme_options() { $default_theme_options = array( /*feature section options*/ 'acmephoto-enable-feature' => '', 'acmephoto-feature-enable-social' => '', 'acmephoto-feature-page' => 0, 'acmephoto-feature-height' => 60, 'acmephoto-feature-button-option'=> 'search', /*header options*/ 'acmephoto-header-logo' => '', 'acmephoto-header-id-display-opt'=> 'title-and-tagline', 'acmephoto-menu-position-options'=> 'below-feature', 'acmephoto-facebook-url' => '', 'acmephoto-twitter-url' => '', 'acmephoto-instagram-url' => '', 'acmephoto-enable-social' => '', /*footer options*/ 'acmephoto-enable-footer-social' => '', 'acmephoto-footer-copyright' => __( '© All Right Reserved 2016', 'acmephoto' ), /*layout/design options*/ 'acmephoto-default-layout' => 'fullwidth', 'acmephoto-single-sidebar-layout'=> 'right-sidebar', 'acmephoto-pagination-option' => 'default', /*blog archive*/ 'acmephoto-blog-enable-gap' => 1, 'acmephoto-blog-show-title' => 1, 'acmephoto-blog-show-cats' => 1, 'acmephoto-blog-show-comments' => '', 'acmephoto-blog-show-date' => '', 'acmephoto-blog-show-author' => 1, /*color*/ 'acmephoto-primary-color' => '#F88C00', /*custom css*/ 'acmephoto-custom-css' => '', /*single related post options*/ 'acmephoto-show-related' => 1, /*theme options*/ 'acmephoto-search-placholder' => __( 'Search', 'acmephoto' ), 'acmephoto-show-breadcrumb' => '', /*Reset*/ 'acmephoto-reset-options' => '0' ); return apply_filters( 'acmephoto_default_theme_options', $default_theme_options ); } endif; /** * Get theme options * * @since AcmePhoto 1.0.0 * * @param null * @return array acmephoto_theme_options * */ if ( !function_exists('acmephoto_get_theme_options') ) : function acmephoto_get_theme_options() { $acmephoto_default_theme_options = acmephoto_get_default_theme_options(); $acmephoto_get_theme_options = get_theme_mod( 'acmephoto_theme_options'); if( is_array( $acmephoto_get_theme_options ) ){ return array_merge( $acmephoto_default_theme_options ,$acmephoto_get_theme_options ); } else{ return $acmephoto_default_theme_options; } } endif;