|
@@ -3,7 +3,7 @@
|
|
|
/**
|
|
|
* Add Editor Styles
|
|
|
*/
|
|
|
-function newtheme_editor_styles() {
|
|
|
+function zoologist_editor_styles() {
|
|
|
// Enqueue editor styles.
|
|
|
add_editor_style(
|
|
|
array(
|
|
@@ -11,13 +11,13 @@ function newtheme_editor_styles() {
|
|
|
)
|
|
|
);
|
|
|
}
|
|
|
-add_action( 'after_setup_theme', 'newtheme_editor_styles' );
|
|
|
+add_action( 'after_setup_theme', 'zoologist_editor_styles' );
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
* Enqueue scripts and styles.
|
|
|
*/
|
|
|
-function newtheme_scripts() {
|
|
|
- wp_enqueue_style( 'newtheme-styles', get_stylesheet_directory_uri() . '/assets/theme.css', array('blockbase-ponyfill'), wp_get_theme()->get( 'Version' ) );
|
|
|
+function zoologist_scripts() {
|
|
|
+ wp_enqueue_style( 'zoologist-styles', get_stylesheet_directory_uri() . '/assets/theme.css', array('blockbase-ponyfill'), wp_get_theme()->get( 'Version' ) );
|
|
|
}
|
|
|
-add_action( 'wp_enqueue_scripts', 'newtheme_scripts' );
|
|
|
+add_action( 'wp_enqueue_scripts', 'zoologist_scripts' );
|