hello
I have a site that works with dynamic content made with custom post types from PODS.
The idea is to have that file (pdf) previously uploaded with the custom post type made with pods for download
In one of the cases I have the url of a file field. I reach that URL with this code:
<?php
$pod = pods();
echo $pod->display( 'archivo' );
?>
I want to put the download link in the content of an icon + text block. Since text editing is WYSIWYG, I edit in the HTML tab. I always write this code:
<li>Más información en documentos adicionales: <strong><a href="<?php echo $pod;?>" target="_blank" download="Cuidadanas">Descargar</a></strong></li>
But also every time, the editor changes my opening and closing php tags to: ‘<’ and ‘>’, what are the html entities for ‘<’ and ‘>’
Is there a way that when editing in HTML those tags that I need to have my link will be honored?
Thank you so much