How to update a particular field / paragraphy (e.g. price) in a wordpress article through make.com?

:bullseye: What is your goal?

Update particular field / paragraphy (e.g. price) in a wordpress article

:thinking: What is the problem & what have you tried?

I don’t know how to set up through the Wordpress module (Update wordpress)

If that text is inside the normal post content, you usually can’t change just one small paragraph directly in Update a Post.
The simple way is:

  1. Get the post first

  2. Take the current content

  3. Replace only the text you want (example: old price → new price)

  4. Send the full updated content back into Update a Post

So the flow is:

Get Post → replace text → Update Post

WordPress updates posts through its REST API, and posts include fields like content that get updated when you send the new version back.
In Make community examples, people use the same idea: get the post content first, change the needed part, then update the post again.