获得收视率最高的选票@GD-Star评级的内容或摘录?

时间:2013-05-20 作者:user1627363

我使用的是GD星级插件,我有一个功能,可以输出排名靠前的帖子。问题是:它不会显示这些帖子的内容或摘录。我该怎么做?这是我正在使用的函数:

<?php
global $wpdb; // include the $wpdb
$query= "SELECT p.ID, p.post_title as title, visitor_votes + user_votes as total_votes, visitor_votes, user_votes  FROM  `".$wpdb->prefix."gdsr_data_article` da INNER JOIN $wpdb->posts p ON da.post_id = p.ID order by total_votes desc limit 20";
$results=$wpdb->get_results($query); // run the query on the database
if ($results) { // if we have any results
    ?>
    <table><thead><tr><th>Position</th><th>Post</th><th>Points</th></tr></thead>
    <?php
        $position=0; // we set the position as 0, as we start every loop with increasing it by one
        foreach ($results as $toppost) {
            $position++; // see, I told you, we increase by one, so the first post will get position #1
            echo "<tr><td>#".$plads."</td><td><a href=\'".get_permalink($toppost->ID)."\'>".$toppost->title."</td><td>".round($toppost->total_votes)."</td></tr>";
        }
    ?>
    </table>
    <?php   
    }
?>
我已经试过了:get_the_excerpt($toppost->title)get_the_excerpt($toppost->ID), 但他们都没有表现出来。

1 个回复
最合适的回答,由SO网友:user1627363 整理而成

不再需要这个了。您可以使用Template Builder 在GD星级自我设置中。如果单击了“生成器”并添加了新模板,请滚动至右下角。选择您自己的设置,并分别通过后端或Wordpress将函数或快捷码粘贴到页面中。已解决。

结束
获得收视率最高的选票@GD-Star评级的内容或摘录? - 小码农CODE - 行之有效找到问题解决它

获得收视率最高的选票@GD-Star评级的内容或摘录?

时间:2013-05-20 作者:user1627363

我使用的是GD星级插件,我有一个功能,可以输出排名靠前的帖子。问题是:它不会显示这些帖子的内容或摘录。我该怎么做?这是我正在使用的函数:

<?php
global $wpdb; // include the $wpdb
$query= "SELECT p.ID, p.post_title as title, visitor_votes + user_votes as total_votes, visitor_votes, user_votes  FROM  `".$wpdb->prefix."gdsr_data_article` da INNER JOIN $wpdb->posts p ON da.post_id = p.ID order by total_votes desc limit 20";
$results=$wpdb->get_results($query); // run the query on the database
if ($results) { // if we have any results
    ?>
    <table><thead><tr><th>Position</th><th>Post</th><th>Points</th></tr></thead>
    <?php
        $position=0; // we set the position as 0, as we start every loop with increasing it by one
        foreach ($results as $toppost) {
            $position++; // see, I told you, we increase by one, so the first post will get position #1
            echo "<tr><td>#".$plads."</td><td><a href=\'".get_permalink($toppost->ID)."\'>".$toppost->title."</td><td>".round($toppost->total_votes)."</td></tr>";
        }
    ?>
    </table>
    <?php   
    }
?>
我已经试过了:get_the_excerpt($toppost->title)get_the_excerpt($toppost->ID), 但他们都没有表现出来。

1 个回复
最合适的回答,由SO网友:user1627363 整理而成

不再需要这个了。您可以使用Template Builder 在GD星级自我设置中。如果单击了“生成器”并添加了新模板,请滚动至右下角。选择您自己的设置,并分别通过后端或Wordpress将函数或快捷码粘贴到页面中。已解决。

相关推荐

Horizontlal scrolling content

我正在寻找一个插件(或其他东西),可以复制水平子菜单和滚动内容,当你点击oeuvres/expostions/etc… :http://www.fillesducalvaire.com/artiste/helena-almeida/有没有办法得到类似的东西?首先我想使用标签,但大多数wordpress插件中标签的内容非常有限。我需要在每个子菜单中包含整个页面部分,如上面的示例所示。谢谢