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
Per segnalazioni e richieste di rimozione scrivere a [email protected] |
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
Cosa trovate in rete di free o open source per quello che riguarda la fatturazione, fatturazione inversa, scorporo dell'IVA e calcolo delle fatture da lordo, netto ed imponibile. |
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
<h2>Privacy Policy</h2> | |
is committed to safeguarding your privacy. Contact us at if you have any questions or problems regarding the use of your Personal Data and we will gladly assist you. | |
By using this site or/and our services, you consent to the Processing of your Personal Data as described in this Privacy Policy. | |
<h3>Table of Contents</h3> | |
<ol> | |
<li><a href="#gdpr-definitions">Definitions used in this Policy</a></li> | |
<li><a href="#gdpr-principles">Data protection principles we follow</a></li> | |
<li><a href="#gdpr-rights">What rights do you have regarding your Personal Data</a></li> | |
<li><a href="#gdpr-information">What Personal Data we gather about you</a></li> |
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
With the following parameters you can customize the popular posts list when using either the wpp_get_mostpopular() template tag or the [wpp] shortcode. | |
Parameter What it does Possible values Defaults to Example | |
header Sets a heading for the list Text string None With wpp_get_mostpopular(): | |
<?php | |
$args = array( | |
'header' => 'Popular Posts' | |
); |
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
SELECT a.ID, a.post_title, a.post_type, a.post_status | |
FROM wp_posts AS a | |
INNER JOIN ( | |
SELECT post_title, MIN( id ) AS min_id | |
FROM wp_posts | |
WHERE post_type = 'post' | |
AND post_status = 'publish' | |
GROUP BY post_title | |
HAVING COUNT( * ) > 1 | |
) AS b ON b.post_title = a.post_title |
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
# funziona in modo ricorsivo per tutti i file nella directory corrente | |
# va bene per le immagini di un sito per risparmiare banda e spazio | |
#prima passata: ricampiona a 960px massimo di altezza, formatta a compressione 80 | |
find . -type f -name '*.jpg' -exec sips -s formatOptions 80 --resampleHeight 960 {} \; | |
#seconda passata: solo per i file grossi | |
find . -type f -size +1M -name '*.jpg' -exec sips -s formatOptions 35 --resampleHeight 960 {} \; | |
#terza ed ultima passata: togliere di mezzo gli EXIF |
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 | |
//note: you should use these hook in functions.php file and / or (mu)plugin | |
//disable WordPress emoji | |
remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); | |
remove_action( 'wp_print_styles', 'print_emoji_styles' ); | |
//disable Gravatars support | |
function __default_local_avatar() |
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 | |
/** | |
* | |
* Plugin Name: Universal SEO Plugin | |
* Description: Set and overwrite title/meta description via url, i.e mapped in a .txt file | |
* Author: Salvatore Capolupo | |
* Version: 1.0 | |
* Author URI: http://www.rubbettinoprint.it | |
*/ |
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 | |
add_action('wp_enqueue_scripts', 'headwolf_enqueues' ); | |
function headwolf_enqueues(){ | |
//bootstrap.min.css | |
wp_enqueue_style('bootstrap2017', get_stylesheet_directory_uri() . '/css/bootstrap.min.css', array(), '3.3.7'); | |
//HTML5 shim + Respond.js for IE8 support | |
global $wp_scripts; | |
wp_enqueue_script('modernizr-script', get_template_directory_uri() . '/js/vendor/modernizr.min.js', array(), '3.3.1'); | |
wp_register_script('respond-script', get_template_directory_uri() . '/js/vendor/respond.min.js', array(), '1.4.2'); |
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
Lista di risorse gratuite dedicate agli sviluppatori WP. |