Jeff Sherk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Where is posts_nav_link function?Thanks
Forum: Fixing WordPress
In reply to: Next/Previous linksOoops.. sorry!
Forum: Fixing WordPress
In reply to: Next/Previous linksFirst try fixing the spacing in the php code and also add a semi-colon to the end:
<?php previous_posts_link(‘« %link’); ?>
<?php next_posts_link(‘%link »’); ?>Next, try these functions instead:
<?php previous_post(‘« %link’); ?>
<?php next_post(‘%link »’); ?>You could also try this single function to replace the two above:
<?php posts_nav_link(‘ ‘,’« %link’,’%link »’); ?>
And lastly you could try removing all the above and instead replacing it the wp-pagenavi plugin, which does a much better job than any of the above functions.
Forum: Everything else WordPress
In reply to: Get an email notification when new post in forum?Okay thanks
Forum: Everything else WordPress
In reply to: WordPress MU or multiple installs of WordPress?MU is not necessarily a better choice than multiple installs of standard WP.
If you are looking for a way to control multiple blogs that will be setup almost identically, and/or you want people to be able to create their own blogs on your website, then yes MU is probably a good choice.
If you are managing multiple blogs that have different requirements for setup and functionality, then keeping seperate WP installs may be the better choice.
Here are some of problems I encountered while spending a week playing with WPMU 1.3rc3:
(1) When you do the initial install, you create a main blog in the install directory, and all other blogs added are added as a sub-directory (if you use the subdirectory method) under this directory. This was a minor problem for me, because I could not install WPMU in the root of the domain, so I put it in mydomain.com/info/, which means all the other blogs are a sub-blog of the main one (ex: mydomain.com/info/news, mydomain.com/info/events, etc). This may or may not be an issue for some people.
(2) User registration for all the sub-blogs doesn’t work the way I need it to work. When you go to a sub-blog and want to register as a user for that particular blog, it actually forces you to register on the main blog, and then the user has to be manually added to the sub-blog.
(3) If you want to disable user registration on the main blog, then it is disabled for ALL sub-blogs. You can enable user registration on the main blog, and then enable/disable as you like on sub-blogs. This is obviously tied to issue 2 above, but not an acceptable option for everybody.
Forum: Plugins
In reply to: Any plugins or hacks that give a common backend for multiple installs of wp?No, I spent a week playing with MU and it doesn’t work the way I need it too. Yes, it allows control of multiple blogs from one backend, but there are many other features and functionality that you can’t do with MU, and requires instead multiple installs of standard WP.
Thanks
Forum: Everything else WordPress
In reply to: WordPress MU or multiple installs of WordPress?I believe that MU does allow each individual blog to have it’s own theme. You can specify which themes will be available to all the blogs, and then each blog can pick a theme.
Forum: Fixing WordPress
In reply to: How to disable login and create new blogI’ll get the right forum eventually!!!
Forum: Everything else WordPress
In reply to: How do I find a previous post in the forum, posted by meOkay thanks… I was still a little perplexed at first though, because two threads I started were NOT listed there.
It took me a while to figure out why… what I didn’t realize at first was that this forum is seperate from the WPMU multi-user forum!!So to the newbies out there, there are two seperate and distinct forums:
Standard WordPress Forum:
http://wordpress.org/supportWordPress Multi-User (WPMU) Forum: http://mu.wordpress.org/forums
Thanks for your replies