当前位置: 首页>>代码示例>>PHP>>正文


PHP Akismet::pingback_forwarded_for方法代码示例

本文整理汇总了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'));
         }
     }
 }
开发者ID:onedaylabs,项目名称:onedaylabs.com,代码行数:24,代码来源:class.akismet.php

示例2: akismet_pingback_forwarded_for

function akismet_pingback_forwarded_for($r, $url)
{
    return Akismet::pingback_forwarded_for($r, $url);
}
开发者ID:TheHiddenHaku,项目名称:fuzzy-waddle,代码行数:4,代码来源:wrapper.php


注:本文中的Akismet::pingback_forwarded_for方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。