I'm currently trying to plug a html theme to wordpress. For that I'm copy pasting HTML in the text editor, but it gave me a weird problem with my img path...
for example:
It looks like the src is not closing when I'm checking the source code on Chrome and I can't find why. The closing quotation mark appear as &#8221 ; instead of ”
could it be an encoding problem? I'm out of solutions...
ps: I'm using
in my function.php
Any clue?
for example:
Code:
<img src="<?php bloginfo('stylesheet_directory'); ?>/_include/img/slider-images/1.jpg" alt="Image" data-fullwidthcentering="on">
It looks like the src is not closing when I'm checking the source code on Chrome and I can't find why. The closing quotation mark appear as &#8221 ; instead of ”
could it be an encoding problem? I'm out of solutions...
ps: I'm using
Code:
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
in my function.php
Any clue?