Skip to content

Instantly share code, notes, and snippets.

View Jany-M's full-sized avatar
🎯
Focusing

Jany Martelli Jany-M

🎯
Focusing
View GitHub Profile
@Jany-M
Jany-M / wp_wc_filter_by_featured_product.php
Last active June 6, 2021 16:18
[WP][WooCommerce] Add featured products filter
@Jany-M
Jany-M / wp_get_og_img.php
Last active June 6, 2021 16:19
[WP] Get an image for Open Graph
<?php
// Get an image for Open Graph - Uses WP Imager https://github.com/Jany-M/WP-Imager
if(is_singular()) {
global $post;
if(function_exists('wp_imager')) {
$img = wp_imager(1200, 630, 1, '', '', '', true );
} elseif(has_post_thumbnail($post->ID)) {
$img = get_the_post_thumbnail_url( $post->ID, array(1200,630));
}
} else {
@Jany-M
Jany-M / wp_add_body_classes.php
Last active June 6, 2021 16:20
[WP] Add custom body classes for better CSS customization
<?php
function add_classes_to_body($classes) {
global $post;
// User Role
$user_info = get_currentuserinfo();
$classes[] = implode(' ', $user_info->roles);
// WPML
if ( function_exists('icl_object_id') ) {
@Jany-M
Jany-M / wp_rename_upload_files.php
Created April 19, 2017 22:50
[WP] Rename files in custom upload folder
<?php
/* ----------------------------------------------------------------------------------------------------------------------------
* PREFACE for this script
*
* A frontend custom form, allowing registered users to create a custom post type + upload images to ACF Gallery custom field,
* in a custom uploads folder, had a bug where it would replace any symbol with -,
* including replacing the file extensions (eg. .jpg and .png, in -jpg and -png).
* That resulted in various issues, even though browsers could still read the file as image.
* After fixing the form itself, this script was made, to fix all the uploads that had already been uploaded and their path.
@Jany-M
Jany-M / rename_all_files_in_subdirectories.php
Last active July 20, 2022 08:57
[PHP] Rename files in directory subdirectories
<?php
/*------------------------------------------------------------------------------------------------
This specific case assumes the following structure. Please note the absence of file extensions.
MAIN_DIR
- xyz (dir)
-- abc123-jpg (file)
-- xyz456-png (file)
-- jkl123-jpg-300x300 (file)
-- oiu456-png-300x300 (file)
@Jany-M
Jany-M / wp_select_comuni.php
Last active May 22, 2019 16:26
[WP] Select con Comuni per x Regione italiana, in Ajax
<?php
// Richiede la creazione ed il popolamente delle tabelle https://gist.github.com/Jany-M/7b75ac99f46aaf13ef04587e5e9dd882
// Richiede la libreria JS Bootstrap Select https://github.com/silviomoreto/bootstrap-select
/* --------------------------------------------------------------------------------
*
* functions.php
*
-------------------------------------------------------------------------------- */
@Jany-M
Jany-M / wp_rp.php
Last active February 23, 2017 14:04
[WP] Regioni, Province, Comuni italiani - DB tables per WordPress
This file has been truncated, but you can view the full file.
<?php
$prefisso = ''; // le tabelle non avranno nessun prefisso e saranno: regioni, province, comuni - altrimenti scegliere qualcos'altro tipo $wpdb->prefix.'rpc_'
define('PREFISSO_TABELLA', $prefisso);
// Questione funzione crea e popola le tabelle necessarie nel db
// Può essere agganciata come azione all'hook init nel functions.php, va caricato una volta sola e poi tolta dal file
function rpc_crea_tabelle(){
global $wpdb;
@Jany-M
Jany-M / .htaccess
Last active March 27, 2024 12:14
[WP] htacces for best security & caching settings
####################################################
#
# MIMETYPES
#
####################################################
AddType video/mp4 mp4 m4v
AddType audio/mp4 m4a
AddType video/ogg ogv
@Jany-M
Jany-M / wp_cf7_country-language_shortcode.php
Last active June 6, 2021 16:22 — forked from MatthewEppelsheimer/country-shortcode.php
[WP] Contact Form 7 shortcode with list of World Countries & Languages
<?php
/*
UPDATED: 23 Jan 2017.
Modifications:
- Truncated the longest country names, including:
-- British Indian Ocean Territories (Chagos Archipelago) -> British Indian Ocean Territories
-- South Georgia and the South Sandhich Islands -> South Georgia & S. Sandwich Islands
@Jany-M
Jany-M / wp_wc_sql_order_query.sql
Created December 20, 2016 19:17
[WP][WooCommerce] SQL query for orders
/* List of useful SQL queries */
SELECT * FROM wp_posts where post_type = 'shop_order' and post_status = 'wc-pending';
SELECT * FROM wp_posts where post_type = 'shop_order';