• Resolved Oliver Campion

    (@domainsupport)


    Hello,

    Could you please let me know if this plugin is still being developed? If it isn’t I guess we can just put this code into functions.php instead of using it?

    	
    add_action('init','disable_kses_if_allowed');
    	
    function disable_kses_if_allowed() {
    
    	if (current_user_can('unfiltered_html')) {
    
    		foreach (array(
    			'pre_term_description',
    			'pre_link_description',
    			'pre_link_notes',
    			'pre_user_description'
    		) as $filter) {
    
    			remove_filter($filter, 'wp_filter_kses');
    
    		}
    
    	}
    
    	foreach (array(
    		'term_description',
    		'link_description',
    		'link_notes',
    		'user_description'
    	) as $filter) {
    
    		remove_filter($filter, 'wp_kses_data');
    
    	}
    
    }

    If it is, can you please test it against WordPress v6.4.1 and update the Tested up to: in the readme.txt?

    Currently Wordfence is reporting this plugin as …

    The Plugin “Allow HTML in Category Descriptions” appears to be abandoned (updated 15th March 2021, tested to WP 5.8.8).

    … and our client is asking for it to be removed accordingly.

    Thank you,

    Oliver

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Timmmy

    (@timherinckx)

    Hi Oliver,

    I’ve offered to assist in updating the WordPress tested checks. Just bumped the version number with the test results.

    Kind regards,

    Timmmy

    Thread Starter Oliver Campion

    (@domainsupport)

    Great, thanks Timmmy.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Is this plugin still developed?’ is closed to new replies.