I have a slider in my theme running, it basically pulls Featured Images. I would like to be able to add a custom URL to each Featured Image via a Custom Fields that I have created called "slide_url". Anyone has an idea how to make this work? Thanks!
This is my code in Functions.php:
<?php function get_custom_field_value($szKey, $bPrint = false) {
global $post;
$szValue = get_post_meta($post->ID, $szKey, true);
if ( $bPrint == false ) return $szValue; else echo $szValue;
}
?>
This is my modified code which is not working at the moment:
[Code moderated as per the Forum Rules. Please use the pastebin]