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 | |
function my_login_message() { | |
global $current_user; | |
$role = $current_user->roles[0]; | |
if ( $role == 'administrator' ) { | |
echo 'Bienvenue administrateur!'; | |
} else { | |
echo 'Bienvenue à vous!'; | |
} | |
} |
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 | |
function add_my_script() { | |
wp_enqueue_script( 'my-script', get_stylesheet_directory_uri() . '/script.js' ); | |
} | |
add_action( 'wp_head', 'add_my_script' ); | |
?> |
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 | |
function mon_filtre_personnalisé($valeur) { | |
// Modifier la valeur de la variable | |
return $valeur; | |
} | |
add_filter('nom_variable', 'mon_filtre_personnalisé'); | |
?> |
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 | |
function ajout_attribut_lien($text) { | |
$text = preg_replace('/(<a.*?)(>)/','$1 target="_blank"$2',$text); | |
return $text; | |
} | |
add_filter('the_content','ajout_attribut_lien'); | |
?> |
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 | |
function mon_filtre_personnalisé($text) { | |
// Ajouter le code à exécuter | |
return $text; | |
} | |
add_filter('the_content', 'mon_filtre_personnalisé'); | |
?> |
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 d'action : | |
add_action('init', 'mon_hook'); | |
function mon_hook() { | |
// votre code ici | |
} | |
// Hook de filtre : | |
add_filter('the_content', 'mon_filtre'); |
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 | |
// Déclaration de la fonction pour créer le Custom Post Type | |
function ma_fonction_cpt() { | |
// Définition des labels pour le CPT | |
$labels = array( | |
'name' => _x( 'Produits', 'Post Type General Name', 'mon_text_domain' ), | |
'singular_name' => _x( 'Produit', 'Post Type Singular Name', 'mon_text_domain' ), | |
'menu_name' => __( 'Produits', 'mon_text_domain' ), | |
'parent_item_colon' => __( 'Produit parent:', 'mon_text_domain' ), |
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 | |
// Create a new "Heures d'ouverture" taxonomy | |
function create_opening_hours_taxonomy() { | |
$labels = array( | |
'name' => _x( 'Heures d'ouverture', 'taxonomy general name', 'textdomain' ), | |
'singular_name' => _x( 'Heure d'ouverture', 'taxonomy singular name', 'textdomain' ), | |
'search_items' => __( 'Rechercher des heures d'ouverture', 'textdomain' ), | |
'all_items' => __( 'Toutes les heures d'ouverture', 'textdomain' ), | |
'parent_item' => __( 'Heure d'ouverture parente', 'textdomain' ), |
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 | |
function my_custom_shortcode($params) { | |
echo 'Hello World! You specified the following parameters: ' . $params['param1'] . ' and ' . $params['param2']; | |
} | |
add_shortcode('hello_world', 'my_custom_shortcode'); | |
?> |
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 | |
function my_custom_shortcode() { | |
echo 'Hello World!'; | |
} | |
add_shortcode('hello_world', 'my_custom_shortcode'); | |
?> |