get_stylesheet_directory_uri() . '/resources/images/headers/reservoir-header.jpg', )); // Default custom headers packaged with the theme. register_default_headers( array( 'reservoir-header' => array( 'url' => '%s/resources/images/headers/reservoir-header.jpg', 'thumbnail_url' => '%s/resources/images/headers/reservoir-header.jpg', 'description' => __( 'Reservoir Header', 'reservoir' ) ), ) ); // Filters add_filter( 'fluida_custom_styles', 'reservoir_custom_styles' ); add_filter( 'cryout_theme_description', 'reservoir_custom_description' ); add_filter( 'cryout_admin_version', 'reservoir_admin_version_output' ); // Initialize first time notice new Cryout_Notice( array( 'slug' => 'reservoir', 'strings' => array( 1 => esc_html__( 'It appears that you might have already configured %1$s. For best results it is recommended to %2$s upon child theme activation.', 'reservoir' ), // %1 is theme name, %2 is next string 2 => esc_html__( 'reset the theme settings', 'reservoir' ), 3 => esc_html__( 'If you have already reset the options it is safe to dismiss this message.', 'reservoir' ), 4 => esc_html__( 'Do not display again', 'reservoir' ), ), ) ); } // reservoir_setup() add_action( 'after_setup_theme', 'reservoir_setup' ); /* FIN */