Mark Steggles
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: List posts and pages in same loop by date descendingYep that works.. thanks
Forum: Fixing WordPress
In reply to: child theme breaks custom menuaha, you have to reassign the primary navigation in menu area when you activate a different theme.
Forum: Fixing WordPress
In reply to: query posts multiple queriesI used a plugin instead
Thanks
Forum: Fixing WordPress
In reply to: hide category on home page doesnt workI found a plugin called ‘category visibilty’ which seemed to do the trick
Forum: Fixing WordPress
In reply to: hide category on home page doesnt workmy code is:
<?php
if (is_home()) {
query_posts(“cat=-62”);
}
?>
<?php if (have_posts()) : ?><?php query_posts($query_string.’orderby=title&order=ASC’); while (have_posts()) : the_post(); ?>
Forum: Fixing WordPress
In reply to: query posts multiple queriesAh I see the id number now. Still not got a solution. All I want to do is exclude a category from my home page (index.php)
<?php if (have_posts()) : ?>
<?php query_posts($query_string.’orderby=title&order=ASC’); while (have_posts()) : the_post(); ?>
Forum: Fixing WordPress
In reply to: query posts multiple queriescategory_name=- doesnt seem to work
query_posts($query_string.’orderby=title&order=ASC&category_name=-Archive’)
Forum: Fixing WordPress
In reply to: query posts multiple queriesIm using wp 2.7 and I cant see id numbers for the categories
Forum: Fixing WordPress
In reply to: query posts multiple queriesIm having trouble working that into the same line:
query_posts($query_string.’&orderby=title&order=ASC’, ‘cat=-Archive’);
is that correct?
Forum: Plugins
In reply to: display posts in order other than when they were postedAhh… didnt have ampersand at the start:
<?php query_posts($query_string.’&orderby=title&order=ASC’); while (have_posts()) : the_post(); ?>
Forum: Plugins
In reply to: display posts in order other than when they were postedAdding order by title to the loop:
<?php query_posts($query_string.’orderby=title&order=ASC’); while (have_posts()) : the_post(); ?>
this breaks the search feature and the categories links on my blog. I have tried different templates but no good. Am I using the order by title query_posts($query_string.’orderby=title&order=ASC’); correctly?
Forum: Plugins
In reply to: display posts in order other than when they were postedI figured it out <8o)
<?php query_posts($query_string.’orderby=title&order=ASC’); while (have_posts()) : the_post(); ?>
Thanks for the help
Forum: Plugins
In reply to: display posts in order other than when they were postedHello, this should do the trick, thanks.
Can you help me implement it:
<?php query_posts($query_string . “&order=title”); ?>
<?php while (have_posts()) : the_post(); ?>is that right?
Thanks
Forum: Alpha/Beta/RC
In reply to: Image Upload – “Specified file failed upload test.”I had the uploader problem… everything worked fine and the images uploaded into the upload folder BUT couldnt get images into posts. These 2 items fixed the problem:
1) htacces in website-root should contain:
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>2) chmod settings for uploads folder set at: 755
Cheers