Hi dbrown,
after updating the theme to 3.1.6, website goes blank. Deleting the lines below from the functions.php file resolved the problem.
function hu_load() {
// Load theme languages
load_theme_textdomain( 'hueman', get_template_directory().'/languages' );
// Load theme options and meta boxes
//load_template( get_template_directory() . '/functions/theme-options.php' );
load_template( get_template_directory() . '/functions/init-meta-boxes.php' );
// Load custom widgets
load_template( get_template_directory() . '/functions/widgets/alx-tabs.php' );
load_template( get_template_directory() . '/functions/widgets/alx-video.php' );
load_template( get_template_directory() . '/functions/widgets/alx-posts.php' );
// Load dynamic styles
load_template( get_stylesheet_directory() . '/functions/widgets/alx-tabs.php' );
Can you let me know what to change in the above code so that it functions with version 3.1.6 and excludes the posts I want?
Thank you!