In my css
div.image {
width:<?php echo get_image_size( $size[1] ); ?>px;
}
The size is stored in an array so i called $size[1] to here...
I am beginner in php...
any one pls help?
|
|
Better solution you can set a header for the css / php file in my example cssfile.php:
Then you can use the php file as style.
Then you should get the output on your site. |
|||
|
|
|
Yes for this particular instance if you just need php on this one line it is best to insert in the head of your html instead of having php make a whole css file for you.
PHP should NOT be creating your static assets unless absolutely necessary. You will notice performance hit if traffic gets high. |
|||
|
|
|
Change the extension to .php and then in your stylesheet put:
Then you can use PHP inside your stylesheet. |
|||
|
|
|
Maybe you should use this:
CSS:
The problem with putting style inside html is that everything get messed. You should try to separate html from css and js as much as possible. Also, from my expirience, this is not a good practice to use php in css or js files. Consider reviewing your html layout to optimize this. |
|||
|
|
|
One way is to move that particular piece out of the .css file, and insert it in a PHP document that has access to the get_image_size() function. For example, you may have a template that is parsed as the header. You could then surround this piece in |
|||
|
|
|
For that you need to use like this
try this |
|||
|
|