How to add QuickTags to bbpress editor??
-
Hi all!
Its a pretty noob question, but i didn’t find anything related to my issue…I added a quicktag to the wordpress default editor
function generico_quicktags() {if ( wp_script_is( 'quicktags' ) ) {
?>
<script type="text/javascript">
QTags.addButton(
'pov_generico',
'POV (Genérico)',
'[pov-generico]',
'[/pov-generico]'
);
QTags.addButton( 'pov_generico', 'p', '<p class="fala generico">', '</p>', '', 'Fala (Personagem Genérico)', 10 );
</script>
<?php
}}
add_action( 'admin_print_footer_scripts', 'generico_quicktags' );
But this don’t show in bbpress reply editor. How can i add this there too?
- You must be logged in to reply to this topic.