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; }