sc456a
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Looking for a more flexible way to display recent postsThanks to the help of a skillful programmer I have finally found the solution in the following code:
<?php define('WP_USE_THEMES', false); if(substr(str_replace(basename($_SERVER['REQUEST_URI']), '', $_SERVER['REQUEST_URI']), 0, 4)!='/wp/'){ include_once('./wp/wp-blog-header.php'); } ?>
This code basically determines if the user is under the /wp/ directory and if they are doesn’t include the wp-blog-header.php files. It was all I needed and it was a nightmare to get – I hope it can help others!
Forum: Fixing WordPress
In reply to: Looking for a more flexible way to display recent postsActually the code only works in the /wp directory if the require for wp-blog-header.php is not included. We’re trying to figure out an if/then statement that would work for this…
Forum: Fixing WordPress
In reply to: Looking for a more flexible way to display recent postsThis is only for use within the /wp folder (in WP itself). See the OP.
Forum: Fixing WordPress
In reply to: Looking for a more flexible way to display recent postsThis is sad…there must be some way to accomplish this! It’s such a simple task but seems to be a difficult one to find the answer for. So many people have asked and no one has ever really gotten a simple answer. There must be a way to set this up without using third party utilities!
Forum: Fixing WordPress
In reply to: Looking for a more flexible way to display recent postsI’m looking for something that I can setup to look like the rest of my site, preferably using CSS.
Forum: Fixing WordPress
In reply to: Looking for a more flexible way to display recent postsSee the OP.
Forum: Fixing WordPress
In reply to: Looking for a more flexible way to display recent postsFind anything Scooby? Anyone? I know there is a way!
Forum: Fixing WordPress
In reply to: Looking for a more flexible way to display recent postsThanks – there are tons of posts but none that seem to address my specific issue. They usually recommend Feedburner, but as I have said that isn’t a very good option for me. I also notice that the BuzzBoost code takes a long time to load on my site, causing loading delays for each page that aren’t acceptable.
Forum: Fixing WordPress
In reply to: Looking for a more flexible way to display recent postsBump (again)!
Forum: Fixing WordPress
In reply to: Looking for a more flexible way to display recent postsBump!
Forum: Requests and Feedback
In reply to: RSS Problem in WordPress 2.2I thought I would add that I am using WP 2.5 and got the same issue. After some hunting I found that my wp-config.php had two blank lines at the end. Clearing these solved the problem.
Forum: Fixing WordPress
In reply to: How do you add a menu item for subcribers?Yes, but I want the menu for the subscriber.
Forum: Fixing WordPress
In reply to: How do you add a menu item for subcribers?Firstly, I don’t want to change the permissions assigned to the roles. Second, I’m not trying to add a menu for the administrator.
I have the roles plugin installed but I don’t see how that will allow me to add a menu for subscribers…
Forum: Fixing WordPress
In reply to: How do you add a menu item for subcribers?Anyone?