ColdForged
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp_list_cats sort order problemUnfortunately, that’s precisely how I do my archives listing and it sorts fine for me. I guess make sure you’re modifying the right file, that’s the only thing I can think of.
Forum: Fixing WordPress
In reply to: How to exclude posts that only belong to one category?Remove the
in_categorystuff and use this in your rootindex.php:<?php
/* Short and sweet */
define('WP_USE_THEMES', true);
if( !isset($cat) ) {
$cat = '-17';
}
require('./wp-blog-header.php');
?>Forum: Themes and Templates
In reply to: Rows wont expand..Don’t know what you mean by “switch”, but you have an explicit width on all those inputs via this CSS selector:
input, textarea {
margin: 0;
background: #4A525A;
border: 1px solid #999;
border-top: 0;
width: 153px; <------------------------------------
padding: 3px 0 2px 5px;
color: #fff;
font-family: Verdana, Arial, sans-serif;
font-size: 11px;
}Forum: Themes and Templates
In reply to: Conditional Tag for calling Sidebar<?php if( is_home()) { ?>Forum: Themes and Templates
In reply to: Special Template!!!!Yes, though you’ll probably find it easier with a plugin like this one rather than trying to do it with multiple loops.
Forum: Fixing WordPress
In reply to: Angle Brackets in Write Post (e.g. < and >)…
Forum: Themes and Templates
In reply to: Beware of Fluid Templates?Here’s a nifty take on a compromise solution: elastic layout.
Forum: Plugins
In reply to: Archive features questionAlso is there a way to archive links? I want to use links to link to daily news stories with no real commentary from myself, then I’d like to keep a monthly archive of the links.
Sounds more like a job for “asides” than links. Search on this forum for “asides” and find a solution that you like. My asides are done like this.
Forum: Plugins
In reply to: plugin hook for top of body element?None that I can see. Perhaps make a mosquito request for it as it seems a sensible and useful hook to include.
Forum: Everything else WordPress
In reply to: Need some help with PHP and WPYou could simply add a space to the
'alt'string (e.g.'alt ').Forum: Fixing WordPress
In reply to: Moderation bug for some users?Does his user profile have an email address?
Forum: Fixing WordPress
In reply to: Can I Do This With WP?I’d make them pages (“Write => Page”). Make a new page for each day of the week, name the page after the day of the week (so “Monday”, “Tuesday”, etc…). Then, on your index, put in a section with a new query to pull the page for what day of the week it is:
<?php $my_query = new WP_Query('pagename='.date("l")); ?><?php while ($my_query->have_posts()) :
$my_query->the_post(); ?>
// Do stuff.
<?php endwhile; ?>Forum: Fixing WordPress
In reply to: “Previous Entries” and “Next Entries” links always show latest postYour permalinks simply aren’t working. Note that plain, ugly links are working fine. Do you have a writeable .htaccess file?
Forum: Themes and Templates
In reply to: Sidebar: How Do I Add to It???Looks fine to me, actually.
Forum: Fixing WordPress
In reply to: Category problemColdForged, I think I have pastebin it, if you click that link you will see it there, or have I got that mixed up.
That’s the code for
template-functions-category.phpwhich comes with every WordPress installation. I was asking for theindex.phpfrom your theme.And Matt meant what is your permalink structure specified under “Options => Permalinks”, not your .htaccess file.