Skip to content

Instantly share code, notes, and snippets.

View thierrypigot's full-sized avatar

Thierry Pigot thierrypigot

View GitHub Profile
@thierrypigot
thierrypigot / action.php
Created December 19, 2022 15:10
Code qui vérifie le rôle de l'utilisateur lorsqu'il se connecte et qui affiche un message spécifique à l'utilisateur en fonction de son rôle
<?php
function my_login_message() {
global $current_user;
$role = $current_user->roles[0];
if ( $role == 'administrator' ) {
echo 'Bienvenue administrateur!';
} else {
echo 'Bienvenue à vous!';
}
}
@thierrypigot
thierrypigot / action.php
Created December 19, 2022 15:09
Ajoute un script supplémentaire à toutes les pages
<?php
function add_my_script() {
wp_enqueue_script( 'my-script', get_stylesheet_directory_uri() . '/script.js' );
}
add_action( 'wp_head', 'add_my_script' );
?>
@thierrypigot
thierrypigot / filtre.php
Created December 19, 2022 15:05
Ajouter ou modifier des variables lorsqu'elles sont passées à un script WordPress
<?php
function mon_filtre_personnalisé($valeur) {
// Modifier la valeur de la variable
return $valeur;
}
add_filter('nom_variable', 'mon_filtre_personnalisé');
?>
@thierrypigot
thierrypigot / filtre.php
Created December 19, 2022 15:05
Ajouter ou modifier des éléments dans le code HTML généré par WordPress
<?php
function ajout_attribut_lien($text) {
$text = preg_replace('/(&lt;a.*?)(&gt;)/','$1 target="_blank"$2',$text);
return $text;
}
add_filter('the_content','ajout_attribut_lien');
?>
@thierrypigot
thierrypigot / filtre.php
Created December 19, 2022 15:04
Appliquer un filtre personnalisé au contenu de chaque article et page
<?php
function mon_filtre_personnalisé($text) {
// Ajouter le code à exécuter
return $text;
}
add_filter('the_content', 'mon_filtre_personnalisé');
?>
<?php
// Hook d'action :
add_action('init', 'mon_hook');
function mon_hook() {
// votre code ici
}
// Hook de filtre :
add_filter('the_content', 'mon_filtre');
<?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' ),
<?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' ),
@thierrypigot
thierrypigot / shortcode.php
Created December 19, 2022 14:44
Shortcode 2
<?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');
?>
@thierrypigot
thierrypigot / shortcode.php
Created December 19, 2022 14:43
Shortcode 1
<?php
function my_custom_shortcode() {
echo 'Hello World!';
}
add_shortcode('hello_world', 'my_custom_shortcode');
?>