• Resolved thomask

    (@thomask)


    When I am using custom post type with co authors plugin, it creates column with the author names with link like
    …/wp-admin/edit.php?author=2
    but it keeps the same link even on custom post type, so link without post_type=???
    and also the filtering then works wrong as even if i put the post_type to the url with author, it does not filter it

    https://www.ads-software.com/extend/plugins/co-authors-plus/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor Daniel Bachhuber

    (@danielbachhuber)

    This is already fixed in an upcoming version.

    Thread Starter thomask

    (@thomask)

    Great. Not sure, how did you do it, so just one quick idea – you should use add_query_arg like

    echo '<a href="'.add_query_arg( array('author' => $author->ID) ).'">'.$author->name.'</a>';

    This way it would work even with any other parameters, so e.g. i could do search and then filter found posts by author.

    P.S.: I know that you probably know this ??

    Plugin Contributor Daniel Bachhuber

    (@danielbachhuber)

    I think the default behavior of core is to simply drop existing query args. For instance, if you were already filtering to one author, you wouldn’t want to filter to a second author.

    Thread Starter thomask

    (@thomask)

    if you would do this as i wrote it, it would actualy REPLACE the author as it is the same parameter as in current url, so your example would work.
    IMO if a user first filter by category (or do search, or other filter) and then click an author, he wants to filter by both. If not, he can simply clear the first filter.
    another option would be to add both, e.g. something like [Tomas Kapler][+], and clicking the plus would add it to query and clicking just a name would replace it. It could be shown this way only when there is some param (other then posttype) in current query, so it would not confuse ordinary users.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Co-Authors Plus] wrong manage_columns authors link for custom post types’ is closed to new replies.