integrate react into the wordpress

2019-08-12 03:18发布

I have a Wordpress site using a generic theme. I made React app I would like to use as a frontpage of my site. Already collected data using REST API. How can I integrate my bundle.js into existing Wordpress page?

1条回答
等我变得足够好
2楼-- · 2019-08-12 03:34

I think you can use shortcode like this [my_shortcode] in some wordpress page.

Then you need to implement it in your plugin (or new plugin if you have no plugins).

just add the following

add_shortcode( 'my_shortcode', 'my_shortcode_handler' );

In your my_shortcode_handler you can serve the html,js,css of your React App By using some WP functions like:

wp_enqueue_style
wp_enqueue_script 
查看更多
登录 后发表回答