Forgive me
Lynne if my question not clear because my english language not so good
I want to hide/disable image below 1 august 2012 only in this category 5, 9, 13, 18, 27.
If other category (example category 35, 38, 45) the image still appear.
How to fix below code?
PHP Code:
if ($post['dateline'] < 1343797200) //If the date is less than August 1, 2012
{
$this->post['message'] = preg_replace("/<img.+?\>/i" , "<img $1 />", $this->post['message']);
}
Thank you