Add custom URL to Featured Image via Custom Fields
-
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]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Add custom URL to Featured Image via Custom Fields’ is closed to new replies.