I'm using the IP API for geolocation in a wordpress plugin, the plugin is ready and works normally! I want to add the following:
In one of the fields of the plugin, the user can insert a text and at the end of this text, only this field does not accept shortcode, is a common text field type, without editor or anything, I will attach the image. The shortcode is ready, I just need the field to accept the shortcode, for now it only brings the shortcode as text.
Output Code
$loop_link_rows .= '<div class="coluna_relacionados_fake"><a rel="nofollow" target="_blank" href="/?action=count&id=' . $row->meta_id . '"><img src="'.content_url().'/uploads'.$row->meta_attachment.'" alt="'.esc_attr( stripcslashes($row->meta_title)).'"></a><a rel="nofollow" target="_blank" href="/?action=count&id=' . $row->meta_id . '">'.$row->meta_content.'</a></div>';