This file contains hidden or 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 | |
/** Supprimer les post info */ | |
remove_action( 'genesis_entry_header', 'genesis_post_info', 12 ); | |
/** Suprimer les post meta */ | |
remove_action( 'genesis_entry_footer', 'genesis_post_meta' ); |
This file contains hidden or 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 | |
// Template Name: Page avec Flexible | |
add_action( 'genesis_entry_content', 'gn_flexible_content', 50); | |
function gn_flexible_content() { | |
// Contrôle si le flexible a des champs | |
if( have_rows('flexible_content_field_name') ): |
This file contains hidden or 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 | |
/* | |
Plugin Name: Options pour WooCommerce | |
Plugin URI: https://wwww.gregoirenoyelle.com | |
Description: Changer des réglage de WooCommerce depuis une extension. | |
Version: 2.0 | |
Author: Grégoire Noyelle | |
Author URI: http://wwww.gregoirenoyelle.com | |
License: GPL2 | |
License URI: https://www.gnu.org/licenses/gpl-2.0.html |
This file contains hidden or 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 // NE PAS METTRE CETTE BALISE | |
// A METTRE DANS VOTRE FICHIER functions.php | |
//* Ajouter le support de page pour les articles | |
add_post_type_support( 'post', 'page-attributes' ); | |
//* Changer ordre d'affichage dans les pages d'archives des articles | |
add_action( 'pre_get_posts', 'gn_post_archive_order' ); | |
function gn_post_archive_order( $query ) { | |
if ( $query->is_main_query() && !is_admin() && $query->is_category() || $query->is_tag() ) { |
This file contains hidden or 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 | |
/** | |
* Register widget area. Twenty Fiften Theme | |
* In functions.php file | |
* | |
* @link https://codex.wordpress.org/Function_Reference/register_sidebar | |
*/ | |
function twentyfifteen_widgets_init() { | |
register_sidebar( array( | |
'name' => __( 'Widget Area', 'twentyfifteen' ), |
This file contains hidden or 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 | |
/*** | |
* default set up for $in['toolbar1'] | |
* bold,italic,strikethrough,bullist,numlist,blockquote,hr,alignleft,aligncenter,alignright,link,unlink,wp_more,spellchecker,wp_fullscreen,wp_adv | |
* default set up for $in['toolbar2'] | |
* formatselect,underline,alignjustify,forecolor,pastetext,removeformat,charmap,outdent,indent,undo,redo,wp_help | |
* default set up for $in['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 | |
* @package TinyMCE | |
*/ |
This file contains hidden or 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 | |
// A placer dans le fichier functions.php de votre thème | |
//* Contrôle si Advanced Custom Field est actif sur le site | |
if ( ! function_exists( 'get_field' ) ) { | |
// Variable pour URL de la page Extension | |
function page_plugin_redirect() { | |
return get_bloginfo('url') . '/wp-admin/plugins.php'; | |
} | |
This file contains hidden or 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 | |
// Template Name: Image avant le contenu | |
//* Affichage du contenu ACF avant le contenu principal | |
add_action('genesis_entry_content','ap_contenu_fiche_cuisinier', 5); | |
function ap_contenu_fiche_cuisinier() { | |
//* Variables ACF pour l'image | |
// L'image ACF est enregistrée en tant que "ID de l'image" | |
$image_id = (int) get_field('nom_du_champ_image_acf'); |