Viewing 1 replies (of 1 total)
  • Plugin Author Tobias Schutter

    (@tschutter)

    I did a second check, and the problem with the new filter is that most other plugins still use the old ones, including ones like woocommerce, yoast seo, ACF etc. I have to see how I can solve this without breaking column setups. I agree that using deprecated functions is no good, but I have to consider compatibility with these plugins as they are widely used.

    Even though the other is deprecated it should still work by using the new filter:

    function codepress_add_custom_column($c) {
        $c['test']  = 'Test Label';
        return $c;
    }
    add_filter( 'manage_post_posts_columns', 'codepress_add_custom_column' );

    Which one of your plugins have this issue?

    I have a bleeding edge version 2.0 available on github: https://github.com/codepress/codepress-admin-columns

Viewing 1 replies (of 1 total)
  • The topic ‘Deprecated functions’ is closed to new replies.