最後活躍 1739747517

semplice plugin per aggiungere codice personalizzato sia nel header che nel footer del tuo sito WordPress

emanuelegori's Avatar emanuelegori 已修改 1739747517. 還原成這個修訂版本

1 file changed, 34 insertions

custom-header-footer-plugin.php(檔案已創建)

@@ -0,0 +1,34 @@
1 + <?php
2 + /*
3 + Plugin Name: Custom Header & Footer Code
4 + Plugin URI: https://emanuelegori.uno
5 + Description: Aggiunge codice personalizzato nel header e nel footer di tutte le pagine del sito.
6 + Author: Emanuele Gori
7 + Author URI: https://emanuelegori.uno
8 + Requires at least: 5.9
9 + Tested up to: 5.9
10 + License: GPL v2 or later
11 + Version: 1.0
12 + */
13 +
14 + if (!defined('ABSPATH')) die(); // Misura di sicurezza per evitare accessi diretti
15 +
16 + // Funzione per aggiungere codice nel <head>
17 + function custom_header_code() {
18 + ?>
19 + <!-- Inizio codice personalizzato nell'header -->
20 +
21 + <!-- Fine codice personalizzato nell'header -->
22 + <?php
23 + }
24 + add_action('wp_head', 'custom_header_code'); // Aggiungi al wp_head
25 +
26 + // Funzione per aggiungere codice nel <footer>
27 + function custom_footer_code() {
28 + ?>
29 + <!-- Inizio codice personalizzato nel footer -->
30 +
31 + <!-- Fine codice personalizzato nel footer -->
32 + <?php
33 + }
34 + add_action('wp_footer', 'custom_footer_code'); // Aggiungi al wp_footer
上一頁 下一頁