joyced
Forum Replies Created
-
Forum: Plugins
In reply to: Displaying Selected Category on Main PageForum: Plugins
In reply to: topics from categoriesI use the following code:
<?php
$myposts = get_posts('numberposts=1&category=1');
foreach($myposts as $post) :
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>If you repeat that for each category (changing the category ID, of course), you’ll get a list with the latest post from each category.
Forum: Plugins
In reply to: FireStats is telling me weird thingsForum: Plugins
In reply to: query_posts to list recent posts – problemAfter perusing the codex (again, missed it before), I’m now using get_posts. Problem solved.
Forum: Plugins
In reply to: How to disable comments popupYou’ve probably got
<?php comments_popup_script(width, height); ?>in your header. Go to Theme Editor and remove it.Forum: Plugins
In reply to: Can´t see plugins!!!To upload files, you must create a folder called “wp-music” in your WordPress root directory (yoursite.com/wordpress or whatever you called it) and upload the files there (using an FTP program).
Forum: Plugins
In reply to: Cross-post to LiveJournal – 2.1 compatibleForum: Plugins
In reply to: Page links on archives page (SRG Clean Archives)Awesome, that worked. Thanks so much!
Forum: Plugins
In reply to: Page links on archives page (SRG Clean Archives)Thanks for your quick reply. I guess I’ll just wait until they “fix” it (assuming it’s a bug).
Forum: Fixing WordPress
In reply to: Error: “Found The document has moved here.”Problem fixed. Thanks a bunch!