I hope someone can help me with this. The code below is from a WordPress Plugin. From the plugin option page I am entering some simple html -
<h3>Showname</h3><p>with DJ Top</p>
The code below ($showname) is used (a WordPress shortcode) to display what I've entered, but it actually displays the HTML rather than processing it i.e displaying the HTML header and paragraph.
Can anyone point me in the direction so $showname processes the HTML rather than just printing it out verbatim tags and all.
Many thanks
Rob
function showtime_schedule_handler($atts, $content=null, $code=""){
global $wpdb;
global $showtimeTable;
//Get the current schedule, divided into days
$daysOfTheWeek = array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
$schedule = array();
$output = '';
foreach ($daysOfTheWeek as $day) {
//Add this day's shows HTML to the $output array
$showsForThisDay = $wpdb->get_results( $wpdb->prepare ( "SELECT * FROM $showtimeTable WHERE dayOfTheWeek = '$day' ORDER BY startTime" ));
//Check to make sure this day has shows before saving the header
if ($showsForThisDay){
$output .= '<h2>'.$day.'</h2>';
$output .= '<ul class="showtime-schedule">';
foreach ($showsForThisDay as $show){
$showName = $show->showName;
$startClock = $show->startClock;
$endClock = $show->endClock;
$linkURL = $show->linkURL;
if ($linkURL){
$showName = '<a href="'.$linkURL.'">'.$showName.'</a>';
}
$output .= '<li><strong>'.$startClock.'</strong> - <strong>'.$endClock.'</strong>: '.$showName.'</li>';
}
$output .= '</ul>';
}
}
return $output;
}
return html_entity_decode($output);. – Jason Swett Oct 22 '12 at 21:08