neilwill
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Checkbox to confirm user have read postHi Manuito, did you find a good way to do this as the whole setup that you describe is pretty much what I am trying to set up too.
Forum: Fixing WordPress
In reply to: Allowing contributers to edit any post and submit for reviewSorry that plugin is named ‘Capability Manager’. It just shows in the menu as capabilities.
Forum: Fixing WordPress
In reply to: Allowing contributers to edit any post and submit for reviewI ended up using a plugin called Revisionary in conjunction with Capabilities. This allows users to ‘save as pending revision’ without removing the original. With capabilities I can specify that users can edit others posts but cannot edit published posts, meaning they cannot update the live copy.
Forum: Fixing WordPress
In reply to: Allowing contributers to edit any post and submit for reviewI’m also looking for a solution to the same problem as sgelbart as I don’t want to take posts down while waiting for updates to be approved. Any updates would be appreciated.
Regards,
NeilForum: Themes and Templates
In reply to: wp_title displaying more than the title…I managed to get this to work using a combination of mattyza and killermaniac’s code.
For the article title immediately following the blog title:
<?php if ( is_single() ) { bloginfo(‘name’) ?> <?php wp_title(“”,true); } else { echo bloginfo(‘name’) ?> <?php bloginfo(‘description’); } ?>To use other separators in place of » such as | just place them between the ?> <?php