우리는 WordPress를 사용하여 JSON 파일에 피드되는 사이트의 데이터를 유지하고 있습니다.
파일에 추가 한 게시물 콘텐츠의 형식이 적절하지 않은 것으로 나타났습니다.따라서 다른 웹 사이트에 피드 할 때 게시물 콘텐츠에는 단락 태그와 같은 HTML이 없습니다.
get_the_content가 모든 올바른 HTML 형식을 추가하기 위해 WordPress 필터를 통해 콘텐츠를 실행한다는 것을 알고 있습니다.그러나 사용자 지정 스크립트에서 데이터베이스를 직접 호출하기 때문에 원시 게시물 내용 만 가져옵니다.
스크립트가 WordPress에 연결되지 않은 상태에서 WordPress 콘텐츠 필터를 통해 콘텐츠를 실행하려면 어떻게해야합니까?
We're using WordPress to maintain data for a site that gets feed into a JSON file.
I've noticed that the post content we add to our file is not getting formatted appropriately. So when we feed it to our other website, the post content has no HTML, like paragraph tags.
I know that get_the_content runs the content through the WordPress filter to add all the correct HTML formatting. However, since we are making direct calls to the database in a custom script, we're just getting the raw post content.
What would we need to do in order to run our content through the WordPress content filter while our script is not connected to WordPress?
우리는 WordPress를 사용하여
JSON
파일에 피드되는 사이트의 데이터를 유지하고 있습니다.파일에 추가 한 게시물 콘텐츠의 형식이 적절하지 않은 것으로 나타났습니다.따라서 다른 웹 사이트에 피드 할 때 게시물 콘텐츠에는 단락 태그와 같은
HTML
이 없습니다.get_the_content가 모든 올바른
HTML
형식을 추가하기 위해 WordPress 필터를 통해 콘텐츠를 실행한다는 것을 알고 있습니다.그러나 사용자 지정 스크립트에서 데이터베이스를 직접 호출하기 때문에 원시 게시물 내용 만 가져옵니다.스크립트가 WordPress에 연결되지 않은 상태에서 WordPress 콘텐츠 필터를 통해 콘텐츠를 실행하려면 어떻게해야합니까?