如何在wordpress中实现投票插件?

时间:2017-04-13 14:15:50

标签: php wordpress

我正在使用投票插件,该插件仅使用以下代码显示在单个帖子页面中。但是,我想在index.php页面中实现相同的功能

        if ( is_singular(explode(',',$type))) 
        {   

            $voting_themes = get_option( 'voting_themes' );

            $voting_display = '';
            $voting_display .= $content;

            $voting_display .= '<div class="voting-container">';

            if($voting_themes== "flat")
                {
                    $voting_display.= voting_themes_flat(get_the_ID());
                }



            $voting_display .='</div>';



            return $voting_display;

        }
    else
        {
            return $content;
        }

    }
else
    {
        return $content;
    }

0 个答案:

没有答案