本文整理汇总了PHP中Akismet::pingback_forwarded_for方法的典型用法代码示例。如果您正苦于以下问题:PHP Akismet::pingback_forwarded_for方法的具体用法?PHP Akismet::pingback_forwarded_for怎么用?PHP Akismet::pingback_forwarded_for使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Akismet
的用法示例。
在下文中一共展示了Akismet::pingback_forwarded_for方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: pre_check_pingback
public static function pre_check_pingback($method)
{
if ($method !== 'pingback.ping') {
return;
}
global $wp_xmlrpc_server;
if (!is_object($wp_xmlrpc_server)) {
return false;
}
// Lame: tightly coupled with the IXR class.
$args = $wp_xmlrpc_server->message->params;
if (!empty($args[1])) {
$post_id = url_to_postid($args[1]);
// If this gets through the pre-check, make sure we properly identify the outbound request as a pingback verification
Akismet::pingback_forwarded_for(null, $args[0]);
add_filter('http_request_args', array('Akismet', 'pingback_forwarded_for'), 10, 2);
$comment = array('comment_author_url' => $args[0], 'comment_post_ID' => $post_id, 'comment_author' => '', 'comment_author_email' => '', 'comment_content' => '', 'comment_type' => 'pingback', 'akismet_pre_check' => '1', 'comment_pingback_target' => $args[1]);
$comment = Akismet::auto_check_comment($comment);
if (isset($comment['akismet_result']) && 'true' == $comment['akismet_result']) {
// Lame: tightly coupled with the IXR classes. Unfortunately the action provides no context and no way to return anything.
$wp_xmlrpc_server->error(new IXR_Error(0, 'Invalid discovery target'));
}
}
}
示例2: akismet_pingback_forwarded_for
function akismet_pingback_forwarded_for($r, $url)
{
return Akismet::pingback_forwarded_for($r, $url);
}