Skip to content

Instantly share code, notes, and snippets.

View bkozma's full-sized avatar

Beata Kozma bkozma

  • BCIT
  • Vancouver, BC
View GitHub Profile
@bkozma
bkozma / gist:ad76a7dcaf0584004a38f2b494bac7ae
Last active July 20, 2016 20:54
WordPress WYSIWYG Editor Customization Examples
<?php
//Button names: http://www.tinymce.com/wiki.php/TinyMCE3x:Buttons/controls
//http://www.tinymce.com/wiki.php/Controls
//Customize WYSIWYG format buttons (aka TinyMCE buttons)
//Remove FEW buttons from the first row
function mindset_remove_buttons_first_row( $buttons ){
$remove = array('alignleft', 'alignright', 'aligncenter', 'wp_adv' );//last one is the toggle
@bkozma
bkozma / gist:e7483b65c27664bf848ca4f540fea1b7
Last active September 25, 2023 09:30
ACF WYSIWYG Editor Customization example
<?php
//ACF Editor customization
function mindset_toolbars( $toolbars )
{
// Uncomment to view format of $toolbars
/*
echo '< pre >';
print_r($toolbars);
echo '< /pre >';