This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Ajout du menu de selection STYLES | |
// http://codex.wordpress.org/TinyMCE_Custom_Styles | |
function tp_mce_buttons_2( $buttons ) { | |
array_splice( $buttons, 1, 0, 'styleselect' ); | |
return $buttons; | |
} | |
// Register our callback to the appropriate filter | |
add_filter('mce_buttons_2', 'tp_mce_buttons_2'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Anti Spam Email | |
* [email][email protected][/email] | |
**/ | |
function tp_antispam_email_shortcode( $atts , $content = null ) | |
{ | |
if ( ! is_email( $content ) ) { | |
return; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Shortcode Custom post type children as list | |
* Thierry Pigot | |
* 2015-04-07 | |
* | |
* [children id='ID' nb='-1' type='page' depth='1'] | |
**/ | |
function tp_shortcode_children( $atts ) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* Hook to init */ | |
add_action( 'init', 'tp_editor_background_color' ); | |
/** | |
* Add TinyMCE Button | |
*/ | |
function tp_editor_background_color() | |
{ | |
/* Add the button/option in second row */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Modify TinyMCE editor to remove H1. | |
*/ | |
add_filter('tiny_mce_before_init', 'tp_tinymce_remove_unused_formats' ); | |
function tp_tinymce_remove_unused_formats($init) | |
{ | |
// Add block format elements you want to show in dropdown | |
// $init['block_formats'] = 'Paragraph=p;Address=address;Pre=pre;Heading 1=h1;Heading 2=h2;Heading 3=h3;Heading 4=h4;Heading 5=h5;Heading 6=h6'; | |
$init['block_formats'] = 'Paragraph=p;Pre=pre;Heading 2=h2;Heading 3=h3;Heading 4=h4;Heading 5=h5;Heading 6=h6'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
define( 'ACF_LITE' , true ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'after_setup_theme', 'tp_after_setup_theme' ); | |
function tp_after_setup_theme() | |
{ | |
add_editor_style(); | |
} | |
add_filter('mce_buttons_2', 'tp_mce_buttons_2'); | |
function tp_mce_buttons_2($buttons) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Change le titre par défaut | |
**/ | |
function tp_custom_title_placeholder( $title ) | |
{ | |
$screen = get_current_screen(); | |
switch( $screen->post_type ) | |
{ | |
case 'FAQ': |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* remove the ability for users to install or edit themes or plugins, | |
* you can use the following definitions to take care of that. | |
* The first will disable the editors, but still allow installations | |
* and updates of themes/plugins, whereas the second definition will disable all of these functions | |
* | |
**/ | |
define('DISALLOW_FILE_EDIT',true); |