WP Manifestindependent plugin directory
manifest / admin / dss-disable-checked-on-top

DSS Disable Checked On Top

On WordPress post edit screen, disable "checked on top" for selected categories.

by Per Soderlind · github.com/dss-web/dss-disable-checked-on-top · website

0stars
0forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/dss-web/dss-disable-checked-on-top/archive/refs/heads/master.zip

Declares an update source (https://github.com/dss-web/dss-disable-checked-on-top), so updates arrive through the plugin's own updater.

Readme

Disable Checked On Top

On WordPress post edit screen, disable "checked on top" for selected categories.

The plugin does the following, i.e. instead of adding the plugin, you could add this to your (child) theme functions.php:

add_filter( 'wp_terms_checklist_args', function ( $args ) {
    $args['checked_ontop'] = false;
    return $args;
} );

Copyright and License

Disable Checked On Top is copyright 2020 Per Soderlind

Disable Checked On Top is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version.

Disable Checked On Top is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with the Extension. If not, see http://www.gnu.org/licenses/.

Read the full README on GitHub →

Releases

TagPublished
0.0.3 Nov 18, 2025

These releases are tags only. The author does not attach a packaged zip, so there are no download counts to report.