summaryrefslogtreecommitdiff
path: root/api/head.php
blob: 1dc6cb4932cd9e1960771412810c234486864b26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

function fk_wp_head() {
    ob_start();
    wp_head();
    $content = ob_get_contents();
    $content = array("head" => $content);
    ob_end_clean();

    return $content;
}