krush
Forum Replies Created
-
Forum: Plugins
In reply to: Extra criteria when a comment is made..any info on this?
may try and handcode it
Forum: Themes and Templates
In reply to: Just the blog posts and thats all..Hey
I’ll spent a few hours working on single.php tonight
Thanks for your help
Forum: Themes and Templates
In reply to: Just the blog posts and thats all..moshu,
thanks for your time, i managed to get my /blog/ news on my front page!
all i have to do now is make the actual single blog pages look like my site, is there an easy way to doing this?
one method i thought of would be striping the single blog entry bare and having it load in a pop-up box.
the downside of that being no search engine optimised pages can be found :/
Forum: Themes and Templates
In reply to: Just the blog posts and thats all..I’m getting allsorts of errors trying the second method.
Any ideas?
Forum: Themes and Templates
In reply to: Just the blog posts and thats all..Or do I create a php file inside the wordpress folder containing just the following:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
and
<?php endwhile; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?>the call that file from my site outside the directory :S
Forum: Themes and Templates
In reply to: Just the blog posts and thats all..Interesting.
I insert the loop code into my website then, which is outside of the wordpress blogs folder, not the folder where wordpress is installed ( /blog/ ).
If that is correct how does the root index.php know where the wordpress blog is?!
All ‘The Loop’ page tells me to do is insert this into my designed php page outside the wordpress directory:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
and
<?php endwhile; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?>then I presume I include
<?php
include (“/blog/index.php”);
?>?
Forum: Fixing WordPress
In reply to: Changing ‘Index.php’ FilenameYeah, I use permalinks.
mod_rewrite sounds dangerous. Thanks for the advice though.
I guess a manual rename will take a lot of tweaking.