先生,我想修改我的 php 代码,以便它会同时显示帖子描述和帖子标题。
下面提到的PHP代码是用优惠券标题替换我的Wordpress帖子标题:
$my_post['post_title'] = str_replace("&", "and", $v['coupon_title']);
下面提到的PHP代码是用优惠券标题替换我的Wordpress帖子描述:
$my_post['post_content'] = str_replace("&", "and", $v['coupon_description']);
我想定制php来替换
$my_post['post_content']
与$v['coupon_title']
&
$v['coupon_description']
请帮帮忙?