First of all, I am an absolute rookie with php (and web design in general) and so I apologise for asking a (possibly) stupid question in a (certainly) stupid way. In my very amateur-esque words, here’s the issue:
This webpage http://fubarradio.com/shows/hiphop/ has 3 tabs - ‘Catch Up’, ‘Info’, ‘Contact’. When I edit the page, the theme allows to add one more tab - ‘Custom Tab’ (in this case, the ‘Open Mic’ tab). However, no matter what I try to add as content, it won’t show up in the front-end of the website, it would always link to the ‘News’ section of the website.
Here’s a screenshot of the Custom Tab http://imgur.com/GQ4YFdr
And here’s the code
// NEW: ADD CUSTOM TAB CONTENT
$custom_tab_title = get_post_meta($post->ID,'custom_tab_title', true);
$custom_tab_content = get_post_meta($post->ID,'custom_tab_content', true);
?>
<section class="qw-pagesection">
<div class="container">
<div class="row">
<div class="<?php $c = qw_glob_sidebar_class(); echo esc_attr($c["content"]);?>">
<header class="qw-page-header" >
<div class="row">
<div class="col-sm-12 col-lg-8">
<h1 class="qw-page-title"><?php echo esc_attr(get_the_title()); ?>
And this is the manual for the theme http://qantumthemes.com/manuals/vice/#section445
I’ve probably messed up this explanation and question in numerous ways, but if it makes sense to anyone…please help
Thank you!