I'm getting the following error message about my functions.php file in Wordpress. Even after deleting the functions.php file, I'm still getting the same error!
Does anyone have any ideas what I can try to resolve this?
Edit:
The functions.php file code is pasted below. Note that I have REMOVED this file but I am still getting the same error.
<?php
// add 'Music' post type
add_action( 'init', 'create_music_post_type' );
function create_music_post_type() {
register_post_type( 'music',
array(
'labels' => array(
'name' => __( 'Music' ),
'add_new_item' => __( 'Add New Music Release' ),
'singular_name' => __( 'Release' )
),
'public' => true,
'has_archive' => true,
'menu_position' => 5,
'rewrite' => array('slug' => 'music'),
'supports' => array('title','editor','thumbnail')
)
);
}
// add 'Press' post type
add_action( 'init', 'create_press_post_type' );
function create_press_post_type() {
register_post_type( 'press',
array(
'labels' => array(
'name' => __( 'Press' ),
'add_new_item' => __( 'Add New Press Feature' ),
'singular_name' => __( 'Press' )
),
'public' => true,
'has_archive' => true,
'menu_position' => 5,
'rewrite' => array('slug' => 'press'),
'supports' => array('title','editor','thumbnail')
)
);
}
// add 'Blog' post type
add_action( 'init', 'create_blog_post_type' );
function create_blog_post_type() {
register_post_type( 'blog',
array(
'labels' => array(
'name' => __( 'Blog' ),
'add_new_item' => __( 'Add New Blog Post' ),
'singular_name' => __( 'Blog' )
),
'public' => true,
'has_archive' => true,
'menu_position' => 4,
'rewrite' => array('slug' => 'blog'),
'supports' => array('title','editor','thumbnail')
)
);
}
//Remove all Twenty Eleven Sidebars
add_action( 'after_setup_theme','remove_twentyeleven_all_widgets', 100 );
function remove_twentyeleven_all_widgets() {
remove_filter( 'widgets_init', 'twentyeleven_widgets_init' );
}
//Add Twitter widget area
function twitter_widgets_init() {
register_sidebar( array(
'name' => 'Twitter',
'id' => 'twitter',
'before_widget' => '<div>',
'after_widget' => '</div>',
'before_title' => '<h2>',
'after_title' => '</h2>',
) );
}
add_action( 'widgets_init', 'twitter_widgets_init' );
//Add Album widget area
function album_widgets_init() {
register_sidebar( array(
'name' => 'New Album',
'id' => 'new_album',
'before_widget' => '<div>',
'after_widget' => '</div>',
'before_title' => '<h2>',
'after_title' => '</h2>',
) );
}
add_action( 'widgets_init', 'album_widgets_init' );
//Add thumbnail sizes
add_theme_support( 'post-thumbnails', array( 'post','page' ) );
add_image_size('album-artwork', 166, 166, true);
add_image_size('gallerix-thumbnail', 175, 114, true);
//Add custom footer message
function remove_footer_admin () {
echo 'Fueled by love, music and <a href="http://www.wordpress.org" target="_blank">WordPress</a> | Designed by <a href="http://www.electrickiwi.co.uk" target="_blank">Electric Kiwi</a>';
}
add_filter('admin_footer_text', 'remove_footer_admin');
?>
UPDATE: All seems to be working now. I had to remove the functions.php file via the File Manager as somehow the FTP doesn't seem to be working correctly. After uploading via that, all seems to be ok. Thanks for everyone's answers.
Try
(?>)
at the end of your file}
at the end .
Check there whether there are spaces at the end of the file or you can paste your code here, your link cannot give any idea as to what exactly is wrong with your code.
Removing the file via the File Manager and reuploading (after adding the missing } from one of the functions) has resolved the issue. FTP was not working which was making me think that the file had been removed/overwritten successfully when in fact it was not!