Skip to content

Instantly share code, notes, and snippets.

@asterion
Created May 13, 2017 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asterion/4918ee403006f684f7b28adae5a408cc to your computer and use it in GitHub Desktop.
Save asterion/4918ee403006f684f7b28adae5a408cc to your computer and use it in GitHub Desktop.
filter
<?php
$themes = array('wp-theme','wp-theme-2', 'wp-theme-3', 'font-awesome', 'icons', 'media-wp');
$themesFilter = array_filter($themes, function($theme){
return preg_match('/^wp/', $theme);
});
print_r($themesFilter);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment