开发者

Get page content with theme structure in Wordpress

开发者 https://www.devze.com 2022-12-18 14:28 出处:网络
I\'m working on an ajax-based Wordpress site and I want to know if there is a way to get a particular page content with theme structure 开发者_如何学编程applied in.

I'm working on an ajax-based Wordpress site and I want to know if there is a way to get a particular page content with theme structure 开发者_如何学编程applied in.

One workaround is to use

wget

or

file_get_contents(page_url)

but it'd be cleaner to use Wordpress built-in functions.

Thanks.


I'd go with file_get_contents. I'm not aware of a built-in WP function to do this, but even if there was one I would expect it to be based on file_get_contents


FYI, don't use any of these methods I mentioned above because it's way too slow. I ended up utilizing the Loop and include_once(); to get the content with the theme structure.

0

精彩评论

暂无评论...
验证码 换一张
取 消