4

如何将 Stackexchange 声誉分数和徽章计数嵌入到我的 Wordpress 博客中?我想在我的博客上显示一个小表格,其中的帐户作为行和列,由代表分数和徽章计数组成。关于如何做到这一点的任何想法?

4

3 回答 3

11

您可以为此使用 User Flair:

https://stackoverflow.com/users/flair

于 2013-08-17T20:27:57.440 回答
1

这是我已经拥有的用于使用Stack Exchange API的测试代码:

<?php
/**
 * Plugin Name: Print SE-API Results as Admin Notice
 */

add_action( 'admin_notices', 'b5f_consume_se_api' );

function b5f_consume_se_api() 
{
    $user = '1417894';
    $page_size = '&pagesize=3';
    $order = '&order=desc';
    $sort = '&sort=votes';

    $so = wp_remote_get( 
        'http://api.stackexchange.com/2.1/users/'
        . $user
        . '/answers?site=stackexchange'
        . $page_size . $order . $sort ,     
        array(
            'timeout'     => 120, 
            'httpversion' => '1.1' 
        ) 
    );

    if ( $so['response']['code'] == '200' )
    {
        $so_array = json_decode( $so['body'], true );
        var_dump( $so_array['items'] );
    }
}

这是正在查询的 URL及其 JSON 结果。它返回来自 OP 的最后 3 个答案,按票数排序(降序)。

检查文档并调整所有内容以满足您的需求。

于 2013-08-17T23:59:43.393 回答
0

在侧边栏添加一个文本小部件并将您的HTML 代码粘贴到其中。

于 2013-08-17T20:33:38.610 回答