[wp-trac] [WordPress Trac] #35099: Make the filter links (Mine, Status, Author, Taxonomy, etc.) links in the posts list table filterable
WordPress Trac
noreply at wordpress.org
Thu Sep 25 16:10:08 UTC 2025
#35099: Make the filter links (Mine, Status, Author, Taxonomy, etc.) links in the
posts list table filterable
-------------------------------------------------+-------------------------
Reporter: sebastian.pisula | Owner: (none)
Type: enhancement | Status: new
Priority: normal | Milestone: Future
| Release
Component: Posts, Post Types | Version:
Severity: normal | Resolution:
Keywords: has-patch needs-testing has-test- | Focuses:
info |
-------------------------------------------------+-------------------------
Comment (by sajjad67):
== Test Report
=== Description
This report validates whether the indicated patch works as expected.
Patch tested: https://github.com/WordPress/wordpress-develop/pull/9950
=== Environment
- WordPress: 6.9-alpha-60093-src
- PHP: 8.2.29
- Server: nginx/1.29.1
- Database: mysqli (Server: 8.4.6 / Client: mysqlnd 8.2.29)
- Browser: Chrome 140.0.0.0
- OS: Windows 10/11
- Theme: Twenty Twenty-Five 1.3
- MU Plugins: None activated
- Plugins:
* Test Reports 1.2.0
=== Actual Results
1. ✅ Issue resolved with patch.
=== Additional Notes
- Example Filter Code
{{{
add_filter(
'edit_filter_links',
function ( $edit_filter_link_vars ) {
$edit_filter_link_vars['url'] = esc_url( home_url() );
$edit_filter_link_vars['css_class'] = 'test test2 test3';
$edit_filter_link_vars['link_text'] = 'Test';
return $edit_filter_link_vars;
},
10,
1
);
}}}
- After applying the filter link becomes
{{{
<a href="http://localhost:8889" class="test test2 test3">Test</a>
}}}
--
Ticket URL: <https://core.trac.wordpress.org/ticket/35099#comment:10>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform
More information about the wp-trac
mailing list