Thread Starter
Aeox
(@aeox)
Hi Dominykas,
thanks. Topic resolved 🙂
Hey guys, i got the same problem. The Problem is TinyMCE Advanced Module and it occurs when you enable this option in the settings of the TinyMCE Advanced Module:
Stop removing the < p > and < / br > tags when saving and show them in the HTML editor
Disable this, and it no longer will generate the strange
<p><br class=”spacer_” /></p> Lines.
I guess its a bug and need to be fixed.
Hope this helps, it worked for me.
Hi,
@jdingman. Didn’t work for me, since nowhere on the web is a snippet to found, I digged into the code and made this little code snippet:
<?php
//Get the Thumbnail URL
$src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array( 720,405 ), false, '' );
echo $src[0];
?>
Worked for me inside “the Loop”. You just need to change the array(width,height) part.
,Aeox