When importing a feed into a custom post type does it make any difference if I store the feed description in the post_excerpt field versus the post_content field? Is there some processing that gets applied via WordPress when I save content to any of those two fields?
Leave a Reply
You must be logged in to post a comment.
There is no difference in storing data into the
post_excerpt
field versus thepost_content
field.If you look at the source code (line 2700) you will notice both
post_excerpt
andpost_content
won’t be filtered.