How to Assign a WordPress Author to a Post?

When creating a WordPress post, I put an integer in the Author box corresponding to the author ID inside WordPress.

In this case, the integer is 5. That purple mapping 200. Author ID is there only because I’m parsing a string into a number.

There’s no error when creating the post via Make. However, when I go to WordPress, I see that the post is being assigned to another author, in this case, number 3. You can see it in the Get a Post module.

I know I can select the exact author inside the module, but I want to map it to the integer that’s defined in a previous module, which varies in each scenario run.

How can I achieve this?

Any help is much appreciated!

Hi! I had the same problem and solved it by using the parseNumber function.
ex: parseNumber(myID; 0)

1 Like