I am trying to use the coin slider 4 wp but it is not returning the url to view in a custom field image, this returning id of the post, I saw that there are some posts that choose error in the plugin is it?
code:
` $image = get_post_meta($post->ID, $imgField , true);
$text = get_post_meta($post->ID, $txtField , true);
$permalink = get_permalink();
$thetitle = get_the_title();
if ($image != ”){
$out .= “
<span>
$thetitle
<div id=’cs-text’>
$text
</div>
</span>
“;
}