2
Comment puis-je utiliser les fonctions WordPress dans ma feuille de style?
J'ai mon style.phpdossier qui ressemble à ceci. <?php header('Content-Type: text/css');?> #div{ background:<?php echo get_option('bgcolor');?>; } Cela ne fonctionne pas, mais quand je le fais, cela fonctionne. <?php header('Content-Type: text/css');?> #div{ background: <?php echo 'blue';?>; } Quel serait le problème? Ceci est le fichier mainfile.php <?php function test(){ global get_option('bgcolor');?> <input …