miracleman12
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Posts do not list alphabetically on Tag TemplateIt seems there is no good solution. Must be a bug in WordPress.
Forum: Fixing WordPress
In reply to: Posts do not list alphabetically on Tag TemplateI have moved this site to a sandbox server and fired up the Twenty-Eleven theme to eliminate any weird stuff I might have in the functions.php file. I have also disabled all plugins. I get the same result.
Is this a bug in WordPress?
Here is my latest with the suggested first solution applied:
http://carpetsindalton.isasecret.com/tag/royal-dutchForum: Fixing WordPress
In reply to: Posts do not list alphabetically on Tag TemplateWell,
I have put this site on a sandbox server, fired up the Twenty-Eleven theme to eliminate anything weird I might have in functions.php. I have also disabled all plugins.
I still get the same results.
Do you think this a bug in WordPress?
Here is my latest example with the first suggested solution applied:
http://carpetsindalton.isasecret.com/tag/royal-dutchForum: Fixing WordPress
In reply to: Posts do not list alphabetically on Tag TemplateAnyone else got anything?
Forum: Fixing WordPress
In reply to: Posts do not list alphabetically on Tag TemplateYes, this does happen with more than one tag.
Disabling plugins has no effect.
Here is the complete code for http://www.carpetsindalton.com/tag/stanton
<?php get_header(); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php $thumb = ''; $width = get_option('minimal_thumbnail_width_usual'); $height = get_option('minimal_thumbnail_height_usual'); $classtext = 'thumbnail-post alignleft'; $titletext = get_the_title(); $thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext); $thumb = $thumbnail["thumb"]; ?> <div class="galleryproduct"> <div class="covershot"><a href="<?php the_permalink() ?>" class="thetip" title="<?php the_title(); ?> :: Click to See Product"> <?php if ( has_post_thumbnail() ) the_post_thumbnail('homepage-thumb', array('alt' => ''.get_the_title().'', 'title' => ''.get_the_title().' :: Click The Thumbnail For Product')); else echo '<img src="/images/noimage.jpg" alt="No Image" title="No Image" />'; ?> </a></div> <div class="gallerytitle"><a href="<?php the_permalink() ?>"><?php the_title('', '', true, '3'); ?></a></div> <div class="gallerydescription"><p><?php the_content_rss('', TRUE, '', 15); ?></p></div> </div> <?php endwhile; ?> <div class="pagination"> <div class="alignleft"><?php next_posts_link(__('« Older Entries','Minimal')) ?></div> <div class="alignright"><?php previous_posts_link(__('Next Entries »', 'Minimal')) ?></div> </div> <?php else : ?> HTML Here <?php endif; ?> <?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Posts do not list alphabetically on Tag TemplateThanks Alchymyth.
I played with this function. I came up with the same result.
BTW, I am not using sticky posts.
Any other ideas?