summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'themes/mantra/includes/theme-setup.php')
-rw-r--r--themes/mantra/includes/theme-setup.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/themes/mantra/includes/theme-setup.php b/themes/mantra/includes/theme-setup.php
index 5bc922a1..cc23596d 100644
--- a/themes/mantra/includes/theme-setup.php
+++ b/themes/mantra/includes/theme-setup.php
@@ -53,7 +53,7 @@ function mantra_setup() {
extract( $mantra_options );
// This theme styles the visual editor with editor-style.css to match the theme style.
- add_editor_style();
+ if ($mantra_editorstyle) add_editor_style( "resources/css/editor-style.css" );
// Support title tag since WP 4.1
add_theme_support( 'title-tag' );
@@ -95,7 +95,6 @@ function mantra_setup() {
// Register custom image size for use with post thumbnails
add_image_size( 'custom', apply_filters( 'mantra_featured_image_width', $mantra_fwidth ), apply_filters( 'mantra_featured_image_height', $mantra_fheight ), !empty($mantra_fcrop) );
- define( 'NO_HEADER_TEXT', true );
$header_args = array(
'height' => $mantra_hheight,
'width' => $mantra_totalSize,