This file contains hidden or 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 // Inserito soltanto per la colorazione della sintassi | |
class SAM_Widget extends WP_Widget{ | |
public function __construct(){ | |
// Cosa impostare durante l'inizializzazione della widget | |
} | |
public function widget(){ | |
// Mostra il contenuto della widget | |
} |
This file contains hidden or 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
<script> | |
var container = document.createElement('div'); | |
container.innerHTML = '<h1>Ciao Mondo</h1>'; | |
document.body.append( container ); | |
</script> | |
</body> |
This file contains hidden or 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
@keyframes change-background{ | |
from{ | |
background-color: #fff; | |
} | |
to{ | |
background-color: #000; | |
} | |
} |
This file contains hidden or 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
<img src="percorso/immagine.jpg" alt="testo" width="200" height="100"> |
This file contains hidden or 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
.test |
This file contains hidden or 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
.flex-container { | |
display: flex; | |
flex-flow: column nowrap; /* scorciatoia flex-direction e flex-wrap */ | |
align-content: center; | |
height: auto; | |
} | |
.flex-item { | |
flex: 0 0 auto; /* scorciatoia flex-grow flex-shrink flex-basis */ | |
width: 100%; | |
margin: .25em; |
This file contains hidden or 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 //Apertura PHP inserita solo per colorazione sintassi | |
define('DISALLOW_FILE_EDIT', true) |
This file contains hidden or 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 //Apertura PHP inserita solo per colorazione sintassi | |
//Inizializzazione oggetto WP_Query | |
$loop = new WP_Query( array( 'cat' => 3 ) ); |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<link rel="stylesheet" href="style.css"> | |
<script src="main.js"></script> | |
<title>Lancia notifiche push dal tuo sito!</title> | |
</head> |
This file contains hidden or 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 //Apertura PHP inserita solo per colorazione sintassi | |
/* Multisite */ | |
define( 'WP_ALLOW_MULTISITE', true ); | |
/* That's all, stop editing! Happy blogging. */ |