Permission to change post Author
Checkout User Roles and Capabilities Plugin
Checkout User Roles and Capabilities Plugin
Try this plugin it’s the easy way of doing what you want co-authors-plus
Yes that’s the default behavior. When an “author” writes a post, he cannot publish it, only an “editor” (or higher) can do the publishing action. As for email notification, there are a couple of plugins for that, here are two : WP Status Notifier WP Pending Post Notifier
Have a look at this tutorial. It will teach you how to add a linkedin box to a user’s profile and how to display that in a post.
Assuming that the author’s id is $author_id, the following code should work. You can of course use this to create your own function. <?php $url = get_the_author_meta(‘user_url’, $author_id); ?> <a href=”https://wordpress.stackexchange.com/questions/26599/<?php echo $url; ?>”><?php echo str_replace(‘http://’, ”, $url);?></a>
There is no limitation on the amount of users… There are some great plugins that would help you manage permissions and limitation you might want to empose to avoid problems.. Tip: Aritcle writers should a writer user level Email Users Plugin – This would help you send email to all users in one click. WyPiekacz … Read more
You can use get_currentuserinfo() to find out a user’s role. To modify the wordpress admin bar, use the admin bar render hook.
You need to hook into the save_post action filter, get the post meta field, and swap the ID’s and fire the update_post function.
Where $that_user_your_filtering_out is the user/author ID you wan’t to filter out, make this modification to your loop foreach ($blogusers as $bloguser) { // modification starts here if($bloguser->user_id == $that_user_your_filtering_out){ continue; } // modification ends here echo ‘<div class=”content-slider-body”>’; $user = get_userdata($bloguser->user_id);
WOO WOO! I got it! I’m using a custom theme for Genesis, so you may see some of that in the notes below, but here it is in case anyone wants to see it. In functions.php /** Display author box on single posts */ add_filter( ‘get_the_author_genesis_author_box_single’, ‘__return_true’ ); /** Display author box on archive pages … Read more