jamiedustuk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: keeps defaulting to homepage index.phpForum: Fixing WordPress
In reply to: keeps defaulting to homepage index.phpbump
Forum: Fixing WordPress
In reply to: microaudio just keeps bufferingI have the same problem, is there plans to sort this out in the near future?
Forum: Requests and Feedback
In reply to: [Plugin: μAudio Player] What about WordPress 2.8?I have the same problem, is there plans to sort this out in the near future?
Forum: Fixing WordPress
In reply to: 404 not working properlythere seems to be no logic to where it decides to start outputting code from but its always from the same place, unless things are added or removed from the 404.php
Forum: Fixing WordPress
In reply to: 404 not working properlytry going here:
Forum: Fixing WordPress
In reply to: 404 not working properlyyes it looks like this:
<?php /** * @package WordPress * @subpackage Default_Theme */ get_header(); ?> <div id="content" class="narrowcolumn"> <h2 class="center">Error 404 - Not Found</h2> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Images resizing incorrectlyrubbish!
Forum: Fixing WordPress
In reply to: 404 not working properlyanyone? seems like a really strange bug, i would rather just have a standard 404 error than a customisable one if its going to give me this
Forum: Themes and Templates
In reply to: Search Formok i copied the outputted html wich was the same as you showed here and it works fine
it would still be nice to know where
<?php get_search_form(); ?>
gets the form from in the default template?Forum: Themes and Templates
In reply to: Search Formim using the default template to display the form it uses
<?php get_search_form(); ?>
and i dont have a searchform.php in my template folder, so i wondered where it could be?
thinking about it maybe i could just copy the outputted html and use that instead of the get_search_form ?Forum: Fixing WordPress
In reply to: tinyMCE troublethanks, for future reference how do people usually find these posts? (when offering advice not looking for help) by the tags or just browsing?
Forum: Fixing WordPress
In reply to: tinyMCE troublebumped
Forum: Fixing WordPress
In reply to: Images resizing incorrectlysomeon emust have come accross this before? must be somthing easily fixable?
Forum: Plugins
In reply to: Custom Fields all posts show same contentthanks, that seems to do the trick, id actually just solved it myself, i looked up the ‘List category posts’ plug in wich almost does what i wanted and found this snippet wich works aswell, thanks for your help
<?php $result = "<ul>"; $catposts = get_posts('category=13'); foreach($catposts as $single): $result .= '<li><span style="font-size:0.9em;font-weight:bold;">» </span><a href='; $result.=get_permalink($single->ID).'>'.$single->post_title.'</a><br />'; //This displays the title for the post and an end of line (br tag) $result .= $single->the_excerpt."\n".'</li>'; //This displays the first 55 words of the post's content [the_excerpt() function] endforeach; $result .= "</ul>"; echo $result; ?>