asianmack
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Display first post differently than others on homepageAwesome esmi. Thank you that worked!
Forum: Fixing WordPress
In reply to: How do I take out an enclosure?I second timbearcubs’ concerns. I constructed a post with multiple links out to various mp3 files and WordPress is creating multiple enclosures in my RSS 2.0 file resulting in an Invalid file. This RSS file should be valid and WordPress should not be automatically generating enclosures for each mp3 link. Does anyone have any fixes so that my RSS feed can come alive again?
Forum: Your WordPress
In reply to: Movable Type to WordPress … success!naderc, thanks for the tip! That looks liek a very interesting site!
Forum: Your WordPress
In reply to: freshmargarita.com!Wow. Is this your first blog? Great job!
Forum: Installing WordPress
In reply to: RSS ErrorAlso as an FYI if you’re using an older version of Dreamweaver as an editor, it messes with the quotes in your markup. I had similar problems when using Dreamweaver 6 to edit that wp-rss2.php file.
Forum: Everything else WordPress
In reply to: What do you look for in a blog?Personality!
Forum: Fixing WordPress
In reply to: Customizing admin interface???You can also download a plugin called Dashboard Options which doesn’t necessarily allow you to customize the UI but it does allow some great flexibility for that first greeting screen.
Forum: Fixing WordPress
In reply to: Call sidebar once only!You can also do something like this:
<?php
// If Category, Page, or Search are not equal to zero, display nothing
if ($cat != “” || $p != “” || $s !=””) {
?>
<?php
} else {
?>
// Else, if it’s on the index, show display this Get Sidebar function
<?php get_sidebar (); ?>
<?php
}
?>That might work. Good luck.
Forum: Your WordPress
In reply to: Movable Type to WordPress … success!Thanks all. It has been a ton of fun messing around with PHP. WP is like a gateway drug into scripting languages! Ha!
Forum: Installing WordPress
In reply to: Cannot get past Login pageAnd you’re using the password that wordpress generated? Your login is “admin”?
Forum: Fixing WordPress
In reply to: alphabetical postsI finally figured this out. Anyone who wants to change the sort order of posts within a category listing should put the following code before The Loop.
<?php if (is_category()) { $posts = query_posts($query_string . ‘&orderby=title&order=asc’); } ?>
Forum: Fixing WordPress
In reply to: Permalinks vs. Query StringsAh ha. Thank you macmanx. This helps a lot!
Forum: Themes and Templates
In reply to: Get category and date archives to display all posts?sadish, this does work for Categories as well! Thanks
<?php if (is_category()) { $posts = query_posts($query_string . ‘&nopaging=1’); } ?>
Forum: Fixing WordPress
In reply to: alphabetical postsOk, so for anyone that’s been folowing this post or is interested in sorting posts in alphabetical order rather than by date authored, I have made some headway.
Here’s my Category view sorted by default (Date authored):
https://www.asianmack.com/wordpress/index.php?cat=2Here’s my Category view sorted the way I want it (Alphabetically):
https://www.asianmack.com/wordpress/index.php?cat=2&orderby=title&order=ascNow the problem is, how do I get the links generated in wp_list_cats() to append that query string? Anyone out there have any ideas?
Forum: Fixing WordPress
In reply to: alphabetical postsThanks for your help regardless! Anyone else out there with any suggestions?