我正在使用投票插件,该插件仅使用以下代码显示在单个帖子页面中。但是,我想在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;
}