Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

368
Vistas
Right way for pass variable php to css in Wordpress

i need to passing variable from php to css for customize style from custom theme option.

The only way i have find is create file.css.php and working good.

But my question is: This is good for website load a file .css.php ? or can have some other problem, like speed or seo?

There are some other good methods? Thx

over 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

Indirect solution:

It sounds like you want to include different CSS behavior based on user selection. Let's say that user selection is stored in a variable $foo. Just include it in an element's class like this

<?php 
$foo = 'option-1'; ?>
<div class="<?php echo $foo; ?>"></div>

There are also two direct solutions to your issue:

1. Use inline CSS or CSS in your file's page head:

<style>
  div.button { color:<?php echo $bar ?>; }
</style>

2. Use a PHP file as CSS. This would look like:

<link rel="stylesheet" type="text/css" href="/style.php">

Then you can use PHP variables right inside your CSS file. Just make sure you change the content-type back to CSS at the beginning of the file like this:

<?php header("Content-type: text/css; charset: UTF-8"); ?>

This method is a little bit unconventional, but it'll work without any speed or SEO drawbacks.

over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda