Guest User

Untitled

a guest
Apr 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. function list_my_plugins(){
  2. $plugins = get_plugins();
  3. $output = '<ul>';
  4. foreach ( $plugins as $plugin ){
  5. $output .= '<li>' . $plugin['Name'] . '</li>';
  6. }
  7. $output .= '</ul>';
  8. return $output;
  9. }
  10. add_shortcode('list-my-plugins', 'list_my_plugins');
Add Comment
Please, Sign In to add comment