2012-12-20, 05:14:00
(not tested)
Insert this in your theme's functions.php file (create the file if it doesn't exist):
Now use this instead of get_component, like:
Insert this in your theme's functions.php file (create the file if it doesn't exist):
PHP Code:
function get_component_h4($compname) {
echo '<h4>',$compname,'</h4>',"\n";
get_component($compname);
}
Now use this instead of get_component, like:
PHP Code:
<?php get_component_h4('Epic-Link-List'); ?>