get_stylesheet_directory_uri() . '/resources/images/headers/flower.jpg', )); // Default custom headers packaged with the theme. register_default_headers( array( 'flower' => array( 'url' => '%s/resources/images/headers/flower.jpg', 'thumbnail_url' => '%s/resources/images/headers/flower.jpg', 'description' => __( 'Flower', 'arcanum' ) ), ) ); // Filters add_filter( 'esotera_custom_styles', 'arcanum_custom_styles' ); add_filter( 'cryout_theme_description', 'arcanum_custom_description' ); add_filter( 'cryout_admin_version', 'arcanum_admin_version_output' ); // Initialize first time notice new Cryout_Notice( array( 'slug' => 'arcanum', '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.', 'arcanum' ), // %1 is theme name, %2 is next string 2 => esc_html__( 'reset the theme settings', 'arcanum' ), 3 => esc_html__( 'If you have already reset the options it is safe to dismiss this message.', 'arcanum' ), 4 => esc_html__( 'Do not display again', 'arcanum' ), ), ) ); } // arcanum_setup() add_action( 'after_setup_theme', 'arcanum_setup' ); /* FIN */