修改$ my_post ['post_content']以显示帖子的描述和标题

时间:2018-01-09 16:00:18

标签: php wordpress str-replace

先生,我想修改我的 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']

请帮帮忙?

0 个答案:

没有答案