Skip to content

Instantly share code, notes, and snippets.

@newmediologo
newmediologo / functions.php
Last active March 19, 2016 09:45
Nascondere la versione di WordPress
<?php
// Remove WP version
function my_remove_version_info() {
return '';
}
add_filter('the_generator', 'my_remove_version_info');
@newmediologo
newmediologo / wordpress-sent-mail.txt
Last active August 29, 2015 14:27
Mittente E-Mail WordPress
add_filter('wp_mail_from', 'new_mail_from');
add_filter('wp_mail_from_name', 'new_mail_from_name');
function new_mail_from($old) {
return 'dalmiosito@ilmiosito.it';
}
function new_mail_from_name($old) {
return 'Messaggio dal Blog';
}
@newmediologo
newmediologo / functions.php
Created May 19, 2015 18:39
functions.php
<?php // Tag di apertura PHP non inserire nulla prima, neanche uno spazio
// Qui inserite le funzioni da attivare, questa sotto è un esempio
add_action( 'wp_enqueue_scripts', 'enqueue_parent_theme_style' );
function enqueue_parent_theme_style() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
}
?>