Tagged Questions
0
votes
1answer
126 views
Sends out email to admin with post author
Hello i'm using this :
add_action('publish_post', 'send_admin_email'); function send_admin_email($post_id){
$to = 'admin@email.here';
$subject = 'subject';
$message = "Here is ...
3
votes
2answers
67 views
How to develop a community feature in the dashboard for multiauthor site
I run a Wordpress site that has more than 300 authors. Is it possible to create some type of community in the backend (dashboard)? Ideally, a space where the authors can discuss with each other in a ...
0
votes
1answer
56 views
How can I merge two authors?
I noticed on one of my WordPress installs I have two admin authors with the same email address. Both of them have posts attributed to them. They are both for the same person, so I'd like to combine ...
0
votes
2answers
224 views
Is it possible to disable certain user roles from creating tags?
As a site admin, I'd like to have control over things.
I'd like to prevent my contributors and authors ( who generate content for me ) from creating new tags. I don't want that tag taxonomy to turn ...
2
votes
1answer
155 views
Is there a way to prevent author change when editor/administrator edits a post?
As an administrator when I change or edit a post of an author (for example add a category through quick edit) the author of the post changes. We do not want this to happen. Is there a way to prevent ...
1
vote
1answer
143 views
How do you set up a WordPress blog with multiple authors to allow something like StackExchange's “community wiki” feature?
I'm thinking about having a blog with multiple authors. In the WordPress Roles documentation, authors can publish posts but only edit their own and not posts by other authors, which is what I'm ...
1
vote
0answers
115 views
How to filter the edit comments admin page, show only current logged in author comments [duplicate]
Possible Duplicate:
Filtering the Admin Comments List to Show Only Comments from the Current User?
I am trying to get the edit-comments admin page to only show comments for the logged in ...
1
vote
2answers
539 views
Show info to author only
I'm writing my own plugin.
works like this:
function myfunc (){
$a = 'hello';
// the sentence what Am looking for:
if ( user is logged and is the author of current post / page ){
...
1
vote
2answers
205 views
Showing Post Counts of One's (Author) Own in the admin post list
How can I show user's post counts of one's (Author) own in the admin post list (edit.php) instead of all post count of the system? like published (10), Draft (5) ... of his own or logedin user.
...
3
votes
1answer
1k views
Can I set a default dashboard layout for all users?
I'm creating a multi-author blog, and have recently added the "Dashboard Notepads" plugin. This allows me to add 1 to 3 dashboard widgets which I can write custom notes in, like news or notices. Is ...