Embeds not working
-
I have a custom theme for a wordpress blog. In the gutenburg block editor I am attempting to add a embed link to youtube. When pasting the link or adding through youtube block it does not convert it to an embedded link.
The following I have tried with no success.
[youtube https://www.youtube.com/watch?v=_mDxcDjg9P4%5D
[embed]https://www.youtube.com/watch?v=_mDxcDjg9P4[/embed]The only thing that does work is php function/iframe. But this is not easy to implement when writing content.
[youtube=https://www.youtube.com/watch?v=_mDxcDjg9P4&w=560&h=315]
-
-
-
I figured it out. So in php for embeds to work, you have to call
<?php the_content() ?>The function
get_the_content()does not automatically embed content with oembed wherethe_content()does.
- The topic ‘Embeds not working’ is closed to new replies.