标签:
//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默认有的,因此不用申明创建钩子
标签:
原文地址:http://www.cnblogs.com/youcle/p/4971801.html