Adding to feed
-
Hi, I’m trying to add something in between the article tags in the feed.
I tried doing this for a test:function testing() { echo 'this was inserted into feed'; } add_action( 'instant_articles_after_transform_post', 'testing' );
But it puts it directly after <![CDATA. Is there a way to put it within the article body?
<!doctype html> <html lang="en" prefix="op: https://media.facebook.com/op#"> <head> <meta ... /> </head> <body> <article> <header> ... </header> <!-- Article body goes here --> //**can it be placed here within the article body? </article> </body>
- The topic ‘Adding to feed’ is closed to new replies.