码迷,mamicode.com
首页 > 其他好文 > 详细

wordpress中过滤器的用法

时间:2015-11-17 15:20:07      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

//apply_filters(‘wp_title‘, $title, $sep, $seplocation);

function translate_chinese_post_title_to_en_for_slug( $title ) {
    /*$translation_render = ‘http://fanyi.baidu.com/v2transapi?from=zh&to=en&transtype=realtime&simple_means_flag=3&query=‘.$title;
    $wp_http_get = wp_safe_remote_get( $translation_render );
    if ( empty( $wp_http_get->errors ) ) {
        if ( ! empty( $wp_http_get[‘body‘] ) ) {
            $trans_result = json_decode( $wp_http_get[‘body‘], true );
            $trans_title = $trans_result[‘trans_result‘][‘data‘][0][‘dst‘];
            return $trans_title;
        }
    }*/
    return "hello".$title;
}
add_filter(‘wp_title‘, ‘translate_chinese_post_title_to_en_for_slug‘);

wp_title这个钩子是wordpress默认有的,因此不用申明创建钩子

wordpress中过滤器的用法

标签:

原文地址:http://www.cnblogs.com/youcle/p/4971801.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!