View Single Post
Old 11-11-2012, 03:18 PM   PM User | #5
Custard7A
Regular Coder

 
Custard7A's Avatar
 
Join Date: Jul 2010
Location: Australia
Posts: 269
Thanks: 32
Thanked 32 Times in 32 Posts
Custard7A is an unknown quantity at this point
Gosh, okay. Here, look at line 23:

PHP Code:


get_sidebar( 'footeid="site-generator">
 <?php do_action'twentyeleven_credits' ); ?>
Php is being initialized, but it hasn't even been closed from last time. It should be this:

PHP Code:


get_sidebar
'footeid="site-generator"');
do_action'twentyeleven_credits' ); ?> 
I think that's valid with the quotes, how I put it. I would have thought along these lines myself:

PHP Code:


get_sidebar
"footeid=\"site-generator\"");
do_action'twentyeleven_credits' ); ?> 
I don't understand the difference between single and double quotes though.

Anyways, see how that works out. It might or might not be all that is causing errors. This code is a total mess if you ask me.
Custard7A is offline   Reply With Quote