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
ファイルにフィードを取得するサイトのデータを維持しています.ファイルに追加した投稿コンテンツが適切にフォーマットされていないことに気づきました.そのため、他のWebサイトにフィードする場合、投稿コンテンツには段落タグのような
HTML
がありません.get_the_contentがWordPressフィルターを介してコンテンツを実行し、すべての正しい
HTML
フォーマットを追加することを知っています.ただし、カスタムスクリプトでデータベースを直接呼び出すため、未加工の投稿コンテンツを取得するだけです.スクリプトがWordPressに接続されていないときに、WordPressコンテンツフィルターを介してコンテンツを実行するには、何をする必要がありますか?