Skip to content

Tag: wordpress

remove part of string after delimiter in php

I have seen other I have a string ” cccc cccc – fff” I need to return “cccc cccc” I don’t need to delimiter too I tried to echo the result of substr($mystring , 0, strpos($mystring , “-“)); but it return nothing I also tried resulted returned the main string and…

CSS background images in WordPress

Is it possible to get a background image in CSS like you normally do in HTML when working with WordPress. I’ve tried doing this but it doesn’t work. Answer PHP code cannot run in .css file, however you can use inline style, such as: or The above would be useful when working with custom fields for …