vc168 发表于 2017-9-16 21:02:22

问个wordpress变量问题

function sc_send($comment_id)
{
$text = '皇上有新的奏章待批阅';
$comment = get_comment($comment_id);
$desp = $comment->comment_content;
$key = 'SCU10446Tehudsfsldfjoods20302d47b1fbdb7597bd07bd61d6';
$postdata = http_build_query(
array(
'text' => $text,
'desp' => $desp
)
);
$opts = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
);
$context = stream_context_create($opts);
return $result = file_get_contents('http://sc.ftqq.com/'.$key.'.send', false, $context);
}
add_action('comment_post', 'sc_send', 19, 2);
发送消息的时候,调用$text和$desp,我想在$desp前面再加点东西,怎么加,比方说我要加个文章IDget_the_ID(),求诸位大佬赐教。

地瓜侠 发表于 2017-9-16 21:02:23

第5行
$desp = get_the_ID().$comment->comment_content;
或者第10行
'desp' => get_the_ID().$desp

vc168 发表于 2017-9-17 08:45:30

地瓜侠 发表于 2017-9-16 21:31
第5行

或者第10行

谢谢大佬,这写法没错,不过get_the_ID()获取不到值,不知道为啥,还是谢谢你。

地瓜侠 发表于 2017-9-17 09:32:16

vc168 发表于 2017-9-17 08:45
谢谢大佬,这写法没错,不过get_the_ID()获取不到值,不知道为啥,还是谢谢你。 ...

我的失误,第5行改成
$desp =$comment->comment_post_ID.$comment->comment_content;
$comment->comment_post_ID就是获取该评论对应的文章ID,get_the_ID需要在$post循环中才生效

vc168 发表于 2017-9-17 10:34:27

地瓜侠 发表于 2017-9-17 09:32
我的失误,第5行改成

$comment->comment_post_ID就是获取该评论对应的文章ID,get_the_ID需要在$post循 ...

:'(太感谢了,大佬人真好。。。

气味 发表于 2017-9-19 14:13:26

地瓜侠 发表于 2017-9-17 09:32
我的失误,第5行改成

$comment->comment_post_ID就是获取该评论对应的文章ID,get_the_ID需要在$post循 ...

:handshake 厉害了
页: [1]
查看完整版本: 问个wordpress变量问题