I have a .php file that includes HTML content in my ftp of the hosting, which I want to insert in the form of an iframe within a wordpress page.
If I do this with a pure HTML file, it always works when I insert it:
<iframe src="https://www.mipagina.com/wp-content/themes/mitema/assets/micarpeta/miarchivo1.html" frameborder="0" scrolling="no" width="(ancho)" height="(alto)"></iframe>
If I do this otherwise with the PHP file, the iframe does not appear:
<iframe src="https://www.mipagina.com/wp-content/themes/mitema/assets/micarpeta/miarchivo2.php" frameborder="0" scrolling="no" width="(ancho)" height="(alto)"></iframe>
Does anyone have any idea what can be done or how to solve it?
Thank you very much in advance. :)