hrbrpkghelpr::global_opts()
hrbrpkghelpr::stinking_badges()
hrbrpkghelpr::yank_title_and_description()
<dalek_voice>
YOU WILL O-BEY </dalek_voice>
WordPress API requiring authentication means you have to do the OAuth2 dance, and most API calls require authentication. That means you need to start off working with the WordPress API in/from pressur
using the wp_auth()
function. For that to work, YOU MUST::
=> Go here and make an app: https://developer.wordpress.com/apps/
=> Put the Client ID
you receive into ~/.Renviron
with a line that looks like:
`WORDPRESS_API_KEY=#####`
=> Put the Client Secret
you receive into ~/.Renviron
with a line that looks like:
`WORDPRESS_API_SECRET=Yn50ds........`
And start with a fresh R session for any of this to even have a remote possibility of working.
I'll make friendlier documentation for ^^ in the near future.
Only minimal functionality is provided at present (enough to get stats out).
You are encouraged to poke around the source and contribute PRs or issues for high priority items you'd like to see in the package.
The following functions are implemented:
hrbrpkghelpr::describe_ingredients()
hrbrpkghelpr::install_block()
library(pressur) # current version packageVersion("pressur")
library(hrbrthemes) library(ggplot2) wp_auth() stats <- wp_site_stats() ggplot(stats$visits, aes(period, views)) + geom_col(fill = ft_cols$slate) + scale_y_comma() + labs(x = NULL, y = "views", title = "Site Views") + theme_ipsum_gs(grid="Y")
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.