roberthilley
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Add Different News Feed/RSS To Each PostI figured it out … I’m using the Exec-PHP plugin and the Simply RSS Fetcher.
Forum: Fixing WordPress
In reply to: Add Different News Feed/RSS To Each PostIn addition, I cannot figure out how to display php code when I paste it into the editor within wordpress. For example:
<?php srssfetcher(“http://www.bing.com/search?q=Lion&go=&form=QBLH&qs=n&sk=&sc=1-17&format=rss”); ?>
If I could figure out how to paste this into the editor it would solve all of my problems.
Anybody?
UPDATE: I was unsuccessful at trying to delete 2000 posts at once … I’d keep it at 500 (max) because of the load on your server.
Never mind … I figured it out. You need to change the number 15 to whatever number you’d like it to be, i.e. 75 or 2000 in the following file wp-admin/includes/post.php:
Change from:
$posts_per_page = get_user_option(‘edit_per_page’);
if ( empty($posts_per_page) )
$posts_per_page = 15;
$posts_per_page = apply_filters(‘edit_posts_per_page’, $posts_per_page);Change to:
$posts_per_page = get_user_option(‘edit_per_page’);
if ( empty($posts_per_page) )
$posts_per_page = 2000;
$posts_per_page = apply_filters(‘edit_posts_per_page’, $posts_per_page);Forum: Fixing WordPress
In reply to: Unable to add comments to WP2.5No problem … I’d suggest a total reinstall. Don’t delete your database though.
Forum: Fixing WordPress
In reply to: Using WP tags on Subdomain Redirecting to Main DomainThanks Ivovic … i already spent about 6 hours looking and testing dif scenarios and is why i asked. I’ll keep looking π Thanks again man.
Forum: Fixing WordPress
In reply to: Using WP tags on Subdomain Redirecting to Main DomainThanks … do you happen to know which file needs a mod? I have done a few for dif topics in the wp-includes folder. Trail and error is not so bad … let me know if you know the file that needs the hack.
Forum: Fixing WordPress
In reply to: Unable to add comments to WP2.5how about this …
Settings | Discussion …
Default article settings: make sure that the following is checked “Allow people to post comments on the article ”
Forum: Fixing WordPress
In reply to: How do I sort link categories in the sidebar?Actually, I think that this may help you …
go to http://www.yourwebsite.com/wp-admin/widgets.php
You should see two category widgets on the right hand side of the CP.
Drag the one that you’d like to be on top, up … or … Drag the one that you’d like to be on the bottom, down.
Hope this helps.
Forum: Fixing WordPress
In reply to: How do I sort link categories in the sidebar?give me the link to the site …
Forum: Fixing WordPress
In reply to: Using WP tags on Subdomain Redirecting to Main DomainMaybe this should be moved to the WP-Advanced cat on the forum? I tried to post there but I did not have access.