joecuk
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Happy 21st Birthday, Matt!Happy Birthday!!!
Forum: Themes and Templates
In reply to: Need Help Getting StartedThat official “The Loop” page doesnt include this line of code:
<?php the_content(); ?>
Its probably obvious to most I suppose but I didn’t realise I needed to add that.
Forum: Themes and Templates
In reply to: Need Help Getting StartedTry this:
http://codex.ww.wp.xz.cn/The_LoopIt probably won’t work, if it doesnt, then consult this thread with the answer:
http://ww.wp.xz.cn/support/topic.php?id=18144But that still doesnt include the news titles, date, category and author.. those can all be found here:
http://codex.ww.wp.xz.cn/Template_TagsForum: Themes and Templates
In reply to: Design with tables?Anybody? : (
Forum: Themes and Templates
In reply to: Design with tables?the page
http://www.blu-raytalk.com/indexxx.phpand the source code:
http://www.blu-raytalk.com/indexxx.phpsignore the dead image links etc.. im just trying to get wordpress in there to start with 🙁
Forum: Installing WordPress
In reply to: Recommend a HostForum: Your WordPress
In reply to: Opinions pleaseSimple but very nice.
I really like that ‘date’ image you have.. very cool.
Forum: Themes and Templates
In reply to: Design with tables?it was a guess! 😀
umm, ive followed the instructions on here:
http://codex.ww.wp.xz.cn/The_LoopI had a basic HTML page, I’ve renamed it to PHP and inserted the following code.
<?php /* Don’t remove this line. */ require(‘./wp-blog-header.php’); ?>
At the top, then this on the page:
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
<?php endforeach; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?>But when I load the indexxx.php page the usual page comes up without the WP posts.
Any ideas?
Forum: Themes and Templates
In reply to: Design with tables?I’ve created a design in Dreamweaver using tables. Learning CSS means another 24 hours of my time. I’m happy with what I’ve got so I’m going to try implementing WP using “The Loop”. I hope its easy, but I’m guessing it’s not!