Hi,
How can I make caption and description for images in GK image show just regular text?
Tnx
if($titles[$i] != '') {
echo '<h3><a href="'.$links[$i].'">' . $titles[$i] . '</a></h3>';
}
if($images[$i]->post_content != '') {
echo '<p><a href="'.$links[$i].'">' . $images[$i]->post_content . '</a></p>';
}
if($titles[$i] != '') {
echo '<h3>' . $titles[$i] . '</h3>';
}
if($images[$i]->post_content != '') {
echo '<p>' . $images[$i]->post_content . '</p>';
}