Skip to content

Instantly share code, notes, and snippets.

View thierrypigot's full-sized avatar

Thierry Pigot thierrypigot

View GitHub Profile
@thierrypigot
thierrypigot / tp_change_image_box.php
Created May 7, 2015 16:26
Change title of "Featured image" metabox on specific Custom Post Type
<?php
add_action('do_meta_boxes', 'tp_change_image_box');
function tp_change_image_box()
{
remove_meta_box( 'postimagediv', 'MY_CUSTOM_POST_TYPE', 'side' );
add_meta_box( 'postimagediv', __('My custom title'), 'post_thumbnail_meta_box', 'MY_CUSTOM_POST_TYPE', 'side', 'high' );
}
@thierrypigot
thierrypigot / exclude-categories-search.php
Last active July 27, 2019 11:19
Exclude page / category from search on WordPress frontend
<?php
/**
* Exlcude categories ids: 2, 3 and 5
**/
function tp_SearchFilter($query)
{
if( !$query->is_admin && $query->is_search )
{
$query->set( 'category__not_in', array( 2, 3, 5 ) );
}
@thierrypigot
thierrypigot / bcpj_query_exclude_offre_id.php
Created May 19, 2015 17:42
ACF : Exclude current post/page/cpt from relationship field results
<?php
/**
* Exclude current post/page/cpt from relationship field results
*/
add_filter('acf/fields/relationship/query/name=NAME-OF-THE-FIELD', 'bcpj_query_exclude_offre_id', 10, 3);
function bcpj_query_exclude_offre_id( $options, $field, $the_post )
{
if( is_admin() )
{
$options['post__not_in'] = array( $the_post->ID );
@thierrypigot
thierrypigot / .htaccess
Created May 28, 2015 08:08
.htaccess : Redirection permanente – Changement de domaine
RewriteCond %{HTTP_HOST} ^(www\.campus\.ccip\.fr)(:80)? [NC]
RewriteRule ^(.*) http://www.campus.cci-paris-idf.fr/$1 [R=301,L]
@thierrypigot
thierrypigot / .htaccess
Created May 28, 2015 08:09
.htaccess : Redirection 301 – changement url
RewriteEngine On
Redirect 301 /organisation.htm http://www.MYNDD.fr/about/quality-management/
@thierrypigot
thierrypigot / functions.php
Created May 28, 2015 08:11
WordPress : Récupérer l’url de la page statique blog
<?php
$posts_page_id = get_option( 'page_for_posts' );
$posts_page = get_page( $posts_page_id);
$posts_page_title = $posts_page->post_title;
$posts_page_url = get_page_uri( $posts_page_id );
?>
<a href="<?php echo get_bloginfo( 'url' ) .'/'. $posts_page_url; ?>">Toutes nos actualités</a>
OU
@thierrypigot
thierrypigot / .htaccess
Created May 28, 2015 08:13
.htaccess : récriture d’url
# Permet de rediriger fiche-47-transports-le-ray.html vers fiche_adherents.php?id_adh=47Options +FollowSymlinks
RewriteEngine on
RewriteRule ^fiche-([0-9]+)-[a-z0-9_-]*\.html$ /fiche_adherents.php?id_adh=$1 [L]
@thierrypigot
thierrypigot / .htaccess
Created May 28, 2015 08:13
.htaccess : Empêcher le listage d’un répertoire
Options -Indexes
@thierrypigot
thierrypigot / cookies.js
Created May 28, 2015 08:15
jQuery : Gestion des Cookies
// Création du cookies example ayant comme valeur foo
$.cookie("example", "foo");
// Expiration du cookies dans 7 jours
$.cookie("example", "foo", { expires: 7 });
// Limiter le cookies au dossier admin
$.cookie("example", "foo", { path: '/admin' });
// Récupérer la valeur d'un cookies
@thierrypigot
thierrypigot / .htaccess
Created May 28, 2015 08:15
.htaccess : Redirection d’un site vers https
Options +Followsymlinks
RewriteEngine On
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [L,R]