Remove Author Slug & Replace With Username

I reviewed all related questions but none tackle this exactly so I’m posting the question in hopes the pro’s know how to handle this. I would like to change the author slug to remove the term /author/ completely like this; currently example.com/author/username want example.com/username Moreover I’d like all posts related to an author to look … Read more

How to query posts from specific authors and categories using WP_query?

I currently have a WP_query where I am getting posts from a specific set of authors. To this, I want to add specific categories as well. $args = array( ‘author__in’ => $authors, ‘posts_per_page’ => 12, ‘paged’ => $paged ); $authors is an array containing users’ ids. So, I need to query posts from both, authors … Read more

Edit/revise option for authors to suggest improvement to posts [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 9 years ago. Improve this question I have a multiple author blog with 300 authors. Is it possible to add a edit type of button where authors … Read more

How can I control multiple editing of wordpress posts?

I am managing multiple authors blog, I have issues of editors taking over the stories that someone else is currently editing. The default wordpress warning will display but some of them ignore it and still proceed to takeover the story. I need a way of locking such stories to prevent editing unless unlocked by the … Read more