ciao a tutti, sto creando un sito con wordpress,il tema l ho preso già fatto...uno free...lo sto modificando per bene ma non riesco a modificare il footer....ho trovato il file footre.php ma quando lo apro esce questo:
Codice:
<?php
// html code of the footer placed in bottom.php
global $SMTheme, $return;
if (!isset($_POST['smt_layout'])||$_POST['smt_layout']!=$SMTheme->layout) {
?> </div><!-- #content --><?php
}
if ( isset($_POST['smt_layout'])) {
$return['content']=ob_get_contents();
$return['layout']=$SMTheme->layout;
$return['sidebars_type']=$SMTheme->sidebars_type;
ob_end_clean();
}
if(!isset($_POST['smt_layout'])){
get_template_part('bottom');
} else {
header('Content-type: application/json');
echo json_encode($return);
}
cercando su google,ho visto che alcuni modifica il footer aggiungendo del codice o modificando una funziona nel file function.php...
io l ho aperto ma non ho trovato alcuna funzione legata al footer....come posso fare? grazie