• Hi Priit

    Thank you for this fine lil’ plugin!

    I had to the following lines of code (at the end) to make the word count column sortable in the reusable blocks view:

    add_filter('manage_edit-wp_block_sortable_columns', function($columns) {
        $columns['word_count'] = 'word_count';
        return $columns;
    });

    Consider adding it to the plugin:)

    Thanks again!
    Oliver

  • The topic ‘Works well’ is closed to new replies.