groups

name language licence
WORDPRESS GET URL PHP BSD
To detect if a plugin is installed... PHP Other
Styling Images in WordPress PHP Other
Displaying Custom Fields PHP Other
Getting Custom Fields PHP Other

< 1 2 3 4 5 6 7 8 9 10 11 12 >



language: PHP
licence: Other

To detect if a plugin is installed...

options: view full snippetsend to code collector
<?php
if (function_exists('FUNCTION NAME')) {
  FUNCTION_NAME();
}
?>

	
(Continues...)