foomaster
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Disable HTML Editorthe html editor is enabled/disabled on a per user basis.
go to users, select the one you want to edit and you’ll see a check box at the top of the page that asks if you want the html editor or not.
Forum: Fixing WordPress
In reply to: Naming RSS Feedsthanks. it’s a starting point.
giving it a try. don’t know if my feed reader is caching the old name or if it might work but i’m still getting the old name.
Forum: Fixing WordPress
In reply to: Show Full Post Instead of Excerptyou know what, i’ have the_content and it’s displaying the optional excerpt.
strange. gonna have to dig for a while to see what’s up.
Forum: Fixing WordPress
In reply to: 2.3.1 vulnerabilitythis actually just happened to me on 2.1.1 so it’s not just a 2.3.1 vulnerability.
same code injected.
Forum: Fixing WordPress
In reply to: Sharing 1 MySQL Dtabase for multiple Blogs?is there an advantage to using one database for multiple wp installs?
for example, if i had a couple of installs across subdomains using the same db, would a search across any _one_ of the sites return results across all?
Forum: Fixing WordPress
In reply to: Display one post per pageAnd found the answer at Ethan’s URL above. Should have looked before I posted.
Now I just need to limit the post listing to title and first 150 characters or so. If anyone has any pointers it would be greatly appreciated.
Forum: Fixing WordPress
In reply to: Display one post per pageYep, I looking to do something very similar. I only have 1 post per page and this is set under Admin but I want the last x posts to display if someone chooses a category.
Ideas?
Forum: Fixing WordPress
In reply to: RSS aggregation outside of the loop in the footer?I think you can do something like this:
<?php _e('Latest Posts'); ?>
<?php query_posts('showposts=5'); ?><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<linkage="<?php the_permalink() ?>"><?php the_title() ?> </linkage>
<?php endwhile; endif; ?>replace “linkage” with anchor tags.