谷歌链接缩短与自定义社交媒体图标

时间:2015-08-24 11:39:15

标签: php wordpress google-api social-media

我希望将Word Link缩短器与Wordpress一起使用。我想使用较短的链接来帮助用户在社交媒体上发布更多信息,这点很贵。谷歌提供了大量的补贴,想要使用。 API密钥可用,但需要使用php之前的Wordpress渲染页面来实现。

当前代码

<a rel="nofollow" href="http://www.facebook.com/sharer.php?u=<?php the_permalink();?>&amp;t=<?php echo urlencode(get_the_title($id)); ?>" title="Share this post on Facebook">
	<img src="<?php echo get_template_directory_uri(); ?>/images/facebook.png" border="0" alt="Facebook"/>
</a>
<a rel="nofollow" href="http://twitter.com/home?status=<?php echo urlencode("Currently reading: "); ?><?php the_permalink(); ?>" title="Share this article with your Twitter followers">
	<img src="<?php echo get_template_directory_uri(); ?>/images//twitter.png" border="0" alt="Twitter"/>
</a>
<a href="https://plus.google.com/share?url=<?php the_permalink(); ?>" title="Share this on Google+">
	<img src="<?php echo get_template_directory_uri(); ?>/images/google_plusone_share.png" border="0" alt="Google+"/>
</a>

总结一下,我需要一个如何在使用内置函数时强制执行Google链接缩短程序API的示例,例如:

the_permalink();

非常感谢。

3 个答案:

答案 0 :(得分:2)

你不想挂钩the_permalink,否则使用它的每个内部页面链接都将通过谷歌路由,这显然是一个坏主意。

而是创建一个新函数来返回缩短的链接:

//wrapper function to echo the result, consistent with Wordpress the_* and get_the_* style
function the_google_short_link(){
    echo get_the_google_short_link();
}

function get_the_google_short_link(){
    // Google::shortlink is an example, replace with whatever code you have that creates the shortlink
    return Google::shortLink(get_permalink(get_the_ID())); 
}

然后在您的模板中使用是必需的:

<a rel="nofollow" href="http://www.facebook.com/sharer.php?u=<?php the_google_short_link();?>&amp;t=<?php echo urlencode(get_the_title($id)); ?>" title="Share this post on Facebook">
    <img src="<?php echo get_template_directory_uri(); ?>/images/facebook.png" border="0" alt="Facebook"/>
</a>

答案 1 :(得分:2)

您需要使用add_filter('the_permalink','your_custom_function');来自定义永久链接的输出。

your_custom_function的粗略轮廓:

function your_custom_function($url){
  // Get your token (if you use OAuth)

  // Send your long url with the [HTTP API][1]

  // return the short url you got.
}

另请参阅Steve's Answer为什么您不想通过the_permalink

实施它

答案 2 :(得分:0)

使用此课程与google api和goo.gl缩短服务进行对话:

<?php

/**
* This file is part of googl-php
*
* https://github.com/sebi/googl-php
*
* googl-php is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

class mashsuGoogl
{
    public $extended;
    private $target;
    private $apiKey;
    private $ch;

    private static $buffer = array();

    function __construct($apiKey = null) {
        # Extended output mode
        $extended = false;

        # Set Google Shortener API target
        $this->target = 'https://www.googleapis.com/urlshortener/v1/url?';

        # Set API key if available
        if ( $apiKey != null ) {
            $this->apiKey = $apiKey;
            $this->target .= 'key='.$apiKey.'&';
        }

        # Initialize cURL
        $this->ch = curl_init();
        # Set our default target URL
        curl_setopt($this->ch, CURLOPT_URL, $this->target);
        # We don't want the return data to be directly outputted, so set RETURNTRANSFER to true
        curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, true);
    }

    public function shorten($url, $extended = false) {

        # Check buffer
        if ( !$extended && !$this->extended && !empty(self::$buffer[$url]) ) {
            return self::$buffer[$url];
        }

        # Payload
        $data = array( 'longUrl' => $url );
        $data_string = '{ "longUrl": "'.$url.'" }';

        # Set cURL options
        curl_setopt($this->ch, CURLOPT_POST, count($data));
        curl_setopt($this->ch, CURLOPT_POSTFIELDS, $data_string);
        curl_setopt($this->ch, CURLOPT_HTTPHEADER, Array('Content-Type: application/json'));

        if ( $extended || $this->extended) {
            return json_decode(curl_exec($this->ch));
        } else {

                        if (isset(json_decode(curl_exec($this->ch))->id)){
                            $ret = json_decode(curl_exec($this->ch))->id;
                            self::$buffer[$url] = $ret;
                            return $ret;
                        }
                        return '';

        }
    }

    public function expand($url, $extended = false) {
        # Set cURL options
        curl_setopt($this->ch, CURLOPT_HTTPGET, true);
        curl_setopt($this->ch, CURLOPT_URL, $this->target.'shortUrl='.$url);

        if ( $extended || $this->extended ) {
            return json_decode(curl_exec($this->ch));
        } else {
            return json_decode(curl_exec($this->ch))->longUrl;
        }
    }

        public function checkApiKey($url, $extended = true) {

        # Check buffer
        if ( !$extended && !$this->extended && !empty(self::$buffer[$url]) ) {
            return self::$buffer[$url];
        }

                # Payload
        $data = array( 'longUrl' => $url );
        $data_string = '{ "longUrl": "'.$url.'" }';

        # Set cURL options
        curl_setopt($this->ch, CURLOPT_POST, count($data));
        curl_setopt($this->ch, CURLOPT_POSTFIELDS, $data_string);
        curl_setopt($this->ch, CURLOPT_HTTPHEADER, Array('Content-Type: application/json'));

        if ( $extended || $this->extended) {
            return json_decode(curl_exec($this->ch), true);
        } else {
            $ret = json_decode(curl_exec($this->ch))->id;
            self::$buffer[$url] = $ret;
            return $ret;
        }
    }

    function __destruct() {
        # Close the curl handle
        curl_close($this->ch);
        # Nulling the curl handle
        $this->ch = null;
    }
}

?>   

这是一个返回goo.gl链接的简短函数

function GetShortURL( $url ){
    global $post;

    $appid = '1234567...'; // your app id


        $shorturl = new mashsuGoogl($appid);
        $shorturlres = $shorturl->shorten($url, false);

    // Shorten URL
    return $shorturlres;
    unset($googl);
    }