ferghal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Subpages and Navigationsorry I didnt explain properly, I only want the pages navigation to appear when your on a page and not on the homepage where all the blog posts appear, is this possible?
Forum: Your WordPress
In reply to: Ferghal.comYeah I had some problems with my database, and just after sorting it out so Im about to start on the archives..
Cheers for the tip on the Flickr plugin, looks great!
Forum: Themes and Templates
In reply to: Comments FileNo it wasnt, thank you!
Forum: Themes and Templates
In reply to: Basic Loop PageIts okay, I figured out how, thanks!
oh yeah Michael Im a daily vistor to your website, great work man.Forum: Themes and Templates
In reply to: 1.2 Skinning Problems!Im not sure what you mean.. This is the code Im using, if this helps
<table width="332" border="0" background="images/news/newsbg.gif" height="18">
<tr>
<td width="76%" height="14" class="main">"><span class="style1"><span class="style2"><span class="style3">
<?php the_title(); ?>
</span></span></span></td>
<td width="24%" class="main"><?php the_date(); ?> by
<?php the_author() ?> </td>
</tr>
</table>
<span class="main"><?php if ($posts) : foreach ($posts as $post) : start_wp(); ?></span>
<div id="content">
<div><div></div>
<div>
<span class="main">
<?php the_content(); ?>
</span></div>
<div>
<span class="main">
<?php wp_link_pages(); ?>
<?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
</span></div>
<span class="main">
<!--
<?php trackback_rdf(); ?>
--><?php include(ABSPATH . 'wp-comments.php'); ?>
</span></div><span class="main">
<?php endforeach; else: ?>
</span>
<p class="main">
<?php _e('Sorry, no posts matched your criteria.'); ?><span class="main">
<?php endif; ?>Forum: Themes and Templates
In reply to: 1.2 Skinning Problems!Im only using 1.2 as a news poster, 2.0 beta is for my blog, but does anyone have a solution for my problem, ignoring the security faults.
Forum: Themes and Templates
In reply to: Query Strings in WPsorry bumping
Forum: Themes and Templates
In reply to: Template 1.2 to 1.5Tried that just there, so what I have done is made a basic template for WP, WP now runs onto a file called feed.php instead of index.php
I am using query strings for the navigation of the site, so as default it loads feed.php onto the news box of the site.
But it still displays wrong as seen at http://beta.invalidpixel.com but it has something to do with the query strings.
This is the code Im using:
<?php
switch ($HTTP_GET_VARS[page]) {
//Default – case
default:
include “feed.php”;
break;//Habbo – Case
case ‘habbo’:
include ‘habbo/habbo.php’;
break;}
?>Forum: Fixing WordPress
In reply to: Does WordPress output to an XML format?Is there anyway I could get these all together, all my posts together in XHTML? As I seem to be only able to get one at a time..