Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
263 views
in Technique[技术] by (71.8m points)

php - Alternative to wp_update_post() in Wordpress REST API

I'm a beginner and I'm trying to write a Wordpress Plugin in PHP to auto-update content on multiple pages. I managed to make it work, it updates correctly, however it breaks multiple page options (controlled by the theme). I believe it's caused by the wp_update_post() function.

I'm looking for the REST API equivalent of this, since it works successfully when I tried with Python.

<?php
.
..
... 
             $new_content = str_replace($old_data, $new_data, $content);
             $edited_post = ['ID'=> $pageID, 'post_content' => $new_content];
             wp_update_post( $edited_post);

Thank you !


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Found the answer :

                 wp_set_current_user(1); // IMPORTANT FOR CRONJOB
                 $request = new WP_REST_Request( 'PUT', '/wp/v2/pages/'.$pageID );
                 $request->set_query_params( [ 'content' => $new_content ] );
                 $rest_response = rest_do_request($request);
                 wp_set_current_user(0);

In case someone needs it ;)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...