Need help to clean up Wordpress theme
Need help to clean up Wordpress theme
Out of context: Reply #2
- Started
- Last post
- 6 Responses
- benfal990
raf THANKS man :D
now the only thing I need to fix is the page bug: http://mu6.ca/a-propos-de-mu6-ca…
Parse error: syntax error, unexpected T_ENDIF in /home1/musixca/public_html/wp-co... on line 23
This is the code of page.php
- - - -
<?php /** * @package WordPress * @subpackage Default_Theme */ get_header(); ?>
<?php get_sidebar(); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<h2 class="psot_title"><?php the_title(); ?></h2>
<div class="post_contents">
<?php the_content(); ?>
</div>
</div>
<?php endwhile; ?>
</div>
<?php endif; ?>
<?php get_footer(); ?>- http://pastebin.com/…********
- I'd try and remove the line with 'endif', you probably removed an 'if' line at the beginning and left the closing 'endif' hangingraf
- I'm off to bed, you'll do ok...raf
- btw, what kinda class is "psot_title"? :Draf
- dude, i outsourced this job to a company in India... thats the result :)benfal99
- http://pastebin.com/…