Skip to content

AddQuicktag for Quickedit on comments

Frank Bültge edited this page Apr 26, 2021 · 1 revision

If you need to enhance the Quickedit-Editor for comment on the admin area page see the plugin below.

Example plugin

<?php
/**
 * Plugin Name: Use AddQuicktag on Quickedit for comments
 * Plugin URI:  http://bueltge.de/
 * Description: Add the quicktags from the AddQuicktag plugin to the editor of Quickedit on the comments page.
 * Author:      Frank Bültge
 * Version:     0.0.1
 * Licence:     GPLv3
 * Author URI:  http://bueltge.de
 */

 // This file is not called from WordPress. We don't like that.
if ( ! function_exists( 'add_filter' ) ) {
	echo "Hi there! I'm just a part of plugin, not much I can do when called directly.";
	exit;
}

if ( ! function_exists( 'my_addquicktag_post_types' ) ) {

	// add custom function to filter hook 'addquicktag_post_types'
	add_filter( 'addquicktag_post_types', 'my_addquicktag_post_types' );
	
	/**
	 * Return array $post_types with custom post types strings
	 * 
	 * @param   $post_type Array
	 * @return  $post_type Array
	 */
	function my_addquicktag_post_types( $post_types ) {
		
		$post_types[] = 'edit-comments';
		
		return $post_types;
	}

	add_filter( 'addquicktag_pages', 'my_addquicktag_pages' );
	/**
	 * Return array $page with custom page strings
	 * 
	 * @param   $page Array
	 * @return  $page Array
	 */
	function my_addquicktag_pages( $page ) {
		
		$page[] = 'edit-comments.php';
		
		return $page;
	}

}
Clone this wiki locally