Parse Error
-
I was trying to edit the code for the header of my blog, but I copied all of the original code to my ‘Notes’ app in case I messed something up. My edits didn’t work, so I tried to paste the original code back in, and I keep getting an error message that says ‘Parse error: syntax error, unexpected ‘}’, expecting end of file in /home2/dorkasa1/public_html/wp-content/themes/dara/inc/custom-header.php on line 23′
I’m not skilled with code at all, so I have no idea what to do. It won’t let me navigate to any other page. Help, I broke it. :(
Here is my code:
<?php
/**
*
* @package Dara
*//**
* Set up the WordPress core custom header feature.
*
* @uses dara_header_style()
*/
function dara_custom_header_setup() {
add_theme_support( ‘custom-header’, apply_filters( ‘dara_custom_header_args’, array(
‘default-image’ => ”,
‘default-text-color’ => ‘444340’,
‘width’ => 1180,
‘height’ => 360,
‘flex-height’ => true,
‘wp-head-callback’ => ‘dara_header_style’,
) ) );
}
add_action( ‘after_setup_theme’, ‘dara_custom_header_setup’ );if ( ! function_exists( ‘dara_header_style’ ) ) :
/**
* Styles the header image and text displayed on the blog
*
* @see dara_custom_header_setup().
*/
function dara_header_style() {
$header_text_color = get_header_textcolor();
/*
* If no custom options for text are set, let’s bail.
* get_header_textcolor() options: Any hex value, ‘blank’ to hide text. Default: add_theme_support( ‘custom-header’ ).
*/
if ( get_theme_support( ‘custom-header’, ‘default-text-color’ ) === $header_text_color ) {
return;
}
// If we get this far, we have custom styles. Let’s do this.
?>
<style type=’text/css’>
<?php
// Has the text been hidden?
if ( ! display_header_text() ) :
?>
.site-title,
.site-description {
position: absolute;
clip: rect(1px, 1px, 1px, 1px);
}
<?php
// If the user has set a custom color for the text use that.
else :
?>
.site-title a {
color: #<?php echo esc_attr( $header_text_color ); ?>;
}
<?php endif; ?>
</style>
<?php
}
endif; // dara_header_styleThe blog I need help with is: (visible only to logged in users)
-
Aloha myemmadilemma, It looks like you are working with a self-hosted WordPress.org site instead of the WordPress.com-hosted version supported here.
Learn more about the differences between WordPress.com and WordPress.org:
https://en.support.wordpress.com/com-vs-org/I would recommend searching on the WordPress.org support forums for similar issues. If you cannot find anything that works, you can start your own thread. The forums are completely separate from each other, so you will need to register an account there if you haven’t done so already.
- The topic ‘Parse Error’ is closed to new replies.