Skip to content

Instantly share code, notes, and snippets.

@gvgvgvijayan
Created January 3, 2021 10:58
Show Gist options
  • Save gvgvgvijayan/a5a4ac1ee19a2f64f1d96785133b272d to your computer and use it in GitHub Desktop.
Save gvgvgvijayan/a5a4ac1ee19a2f64f1d96785133b272d to your computer and use it in GitHub Desktop.
<?php
...
/**
* A map method return all allowed post types to human readable format.
*
* @return array Array of allowed post types in human readable format.
*/
private function allowed_post_types_readable() {
$formatted = array_map(
array( $this, 'human_readable' ),
$this->allowed_post_types
);
return $formatted;
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment