/>
'; } else { echo 'fav'; } ?>

/>
'; } else { echo 'Web Clip Icon'; } ?>

/>
/>

/>
'; } else { echo ''; } ?>

/>

/>


/>

' . get_bloginfo( 'name', 'display' ) . ''; } /** * Function to display a link to WordPress.org. * * @return string */ function catchflames_theme_name() { return '' . __( 'Theme: Catch Flames by ', 'catchflames' ) . ''; } /** * Function to display a link to Theme Link. * * @return string */ function catchflames_theme_author() { return '' . __( 'Catch Themes', 'catchflames' ) . ''; } /** * Function to display Catch Flames Assets * * @return string */ function catchflames_assets(){ $catchflames_content = '
'. catchflames_theme_name() . catchflames_theme_author() . '
'; return $catchflames_content; } /** * Custom scripts and styles on Customizer for Catch Everest * * @since Catch Flames 2.1.1 */ function catchflames_customize_scripts() { wp_register_script( 'catchflames_customizer_custom', get_template_directory_uri() . '/inc/panel/customizer-custom-scripts.js', array( 'jquery' ), '20140108', true ); $catchflames_misc_links = array( 'upgrade_link' => esc_url( admin_url( 'themes.php?page=theme_options' ) ), 'upgrade_text' => __( 'More Theme Options »', 'catchflames' ), ); //Add More Theme Options Button wp_localize_script( 'catchflames_customizer_custom', 'catchflames_misc_links', $catchflames_misc_links ); wp_enqueue_script( 'catchflames_customizer_custom' ); wp_enqueue_style( 'catchflames_customizer_custom', get_template_directory_uri() . '/inc/panel/catchflames-customizer.css'); } add_action( 'customize_controls_print_footer_scripts', 'catchflames_customize_scripts');