delete_wp_tag: Delete a WordPress Tag

Description Usage Arguments Value Examples

View source: R/delete-wp-tags.R

Description

Delete a tag on your WordPress site using your WordPress site's API.

Usage

1
delete_wp_tag(root_url, user, pass, tag_id, verbose = TRUE)

Arguments

root_url

The domain on which you wish to create the post.

user

The username to be passed into the API call to create the post.

pass

The password to be used in the API call to create the post. To get this value, you must have the Application Passwords plugin installed, and must create an application using that plugin via your WordPress admin panel; there you will get the password needed.

tag_id

The text string associated with the tag.

verbose

If TRUE, the tag id will be printed to the console. Potentially useful for usage in a single-threaded loop.

Value

response from the API. 200 means the tag was deleted!

Examples

1
2
3
4
5
## Not run: 
delete_wp_tag(root_url = 'https://domain.com',user = Sys.getenv('username'),
pass = Sys.getenv('password'),tag_id = 12)

## End(Not run)

simitpatel/wordpressr documentation built on Dec. 31, 2021, 6:38 a.m.