' HEAD tag (.css & .js)', 'body' => ' BODY tag (.css & .js)' ); if (! empty($data['rows_assets'])) { // Sorting: head and body $rowsAssets = array('head' => array(), 'body' => array()); foreach ($data['rows_assets'] as $positionMain => $values) { $rowsAssets[$positionMain] = $values; } foreach ($rowsAssets as $positionMain => $values) { ksort($values); $assetRowsOutput = ''; $totalFiles = 0; $assetRowIndex = 1; foreach ($values as $assetType => $assetRows) { foreach ($assetRows as $assetRow) { $assetRowsOutput .= $assetRow . "\n"; $totalFiles++; } } ?>
The files below (if any) are loaded within <head> and </head> tags. The output is done through wp_head() WordPress function which should be located before the closing </head> tag of your theme.
The files below (if any) are loaded within <body> and </body> tags. The output is done through wp_footer() WordPress function which should be located before the closing </body> tag of your theme.
0) { ?>