コード例 #1
0
ファイル: text-control.php プロジェクト: brian3t/orchidmate
function tc_comment($text)
{
    $do_text = get_option('tc_comment_format');
    $do_char = get_option('tc_comment_encoding');
    $text = tc_post_process($text, $do_text, $do_char);
    return $text;
}
コード例 #2
0
ファイル: text-control.php プロジェクト: hunterfu/plugins
function tc_comment($text)
{
    return tc_post_process($text, get_option('tc_comment_format'), get_option('tc_comment_encoding'));
}