Sir, I wants to amend my php code so that it will show post description and post title simultaneous.
The undermentioned php code is to replace my Wordpress Post title with Coupon Title:
$my_post['post_title'] = str_replace("&", "and", $v['coupon_title']);
The undermentioned php code is to replace my Wordpress Post Description with Coupon Title:
$my_post['post_content'] = str_replace("&", "and", $v['coupon_description']);
I want customized the php to replace
$my_post['post_content']
with $v['coupon_title']
&
$v['coupon_description']
Please help ?