Trying update my blog with a new theme and I get a parse error:
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /home/content/c/c/d/ccdscott/html/wp-content/themes/atahualpa/functions/bfa_header_config.php on line 134
Here's a couple of lines of my code:
// Logo Icon for Wordpress and WPMU
if ( $bfa_ata['logo'] != "" ) {
echo '<td ' . $header_rowspan . 'valign="middle" class="logoarea-logo"><a href="tsp final logo header.jpg";
bloginfo('url'); echo '/">'<img class="logo" src=">';
What am I missing? My whole WP site won't even work, lol.
Thanks in advance.
Craig
Thanks for the quick answer. I'm trying to link my custom header with the new theme I am installing.
Thanks for the response Joshua. bloginfo I'm assuming is the title description of the blog. I think the theme is looking for the custom header I uploaded to wp-content. Here's lines 130-152:
// Logo Icon for Wordpress and WPMU
if ( $bfa_ata['logo'] != "" ) {
echo '<td ' . $header_rowspan . 'valign="middle" class="logoarea-logo"><a href="tsp final logo header.jpg";
bloginfo('url'); echo '/">'<img class="logo" src=">';
// if this is WordPress MU
if ( file_exists(ABSPATH."/wpmu-settings.php") ) {
// two ways to figure out the upload path on WPMU, first try easy version 1, :
$upload_path1 = ABSPATH . get_option('upload_path');
// Try the hard way, version 2:
$upload_path2 = str_replace('themes/' . get_option('stylesheet') .
'/functions', '', $_SERVER['DOCUMENT_ROOT']) .
'/wp-content/blogs.dir/' . $wpdb->blogid . '/files';
// see if user has uploaded his own "logosymbol.gif" somewhere into his upload folder, version
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /home/content/c/c/d/ccdscott/html/wp-content/themes/atahualpa/functions/bfa_header_config.php on line 134
Here's a couple of lines of my code:
// Logo Icon for Wordpress and WPMU
if ( $bfa_ata['logo'] != "" ) {
echo '<td ' . $header_rowspan . 'valign="middle" class="logoarea-logo"><a href="tsp final logo header.jpg";
bloginfo('url'); echo '/">'<img class="logo" src=">';
What am I missing? My whole WP site won't even work, lol.
Thanks in advance.
Craig
Thanks for the quick answer. I'm trying to link my custom header with the new theme I am installing.
Thanks for the response Joshua. bloginfo I'm assuming is the title description of the blog. I think the theme is looking for the custom header I uploaded to wp-content. Here's lines 130-152:
// Logo Icon for Wordpress and WPMU
if ( $bfa_ata['logo'] != "" ) {
echo '<td ' . $header_rowspan . 'valign="middle" class="logoarea-logo"><a href="tsp final logo header.jpg";
bloginfo('url'); echo '/">'<img class="logo" src=">';
// if this is WordPress MU
if ( file_exists(ABSPATH."/wpmu-settings.php") ) {
// two ways to figure out the upload path on WPMU, first try easy version 1, :
$upload_path1 = ABSPATH . get_option('upload_path');
// Try the hard way, version 2:
$upload_path2 = str_replace('themes/' . get_option('stylesheet') .
'/functions', '', $_SERVER['DOCUMENT_ROOT']) .
'/wp-content/blogs.dir/' . $wpdb->blogid . '/files';
// see if user has uploaded his own "logosymbol.gif" somewhere into his upload folder, version