コード例 #1
0
/**
 * Stub for wp_title.
 */
function wp_title($sep = '»', $display = true, $seplocation = '')
{
    global $post;
    $data = ['post' => $post];
    $title = WordpressHelper::render('wp-twighelpers/title.twig', $data);
    if ($display) {
        echo $title;
    } else {
        return $title;
    }
}