Advertisement
qlstudio

4 Trees - ftf_get_option()

Nov 12th, 2012
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. /**
  2.  * return path or uri or child or parent
  3.  * required for child / parent compatibility functions
  4.  *
  5.  * @request string indicating which settings to retrieve
  6.  * @echo boolean echo or return the results ##
  7.  * @uses get_stylesheet_directory_uri()
  8.  * @uses get_stylesheet_directory()
  9.  * @uses get_bloginfo()
  10.  * @uses TEMPLATEPATH ( constant )
  11.  * @return array
  12.  * @since 0.1
  13.  */
  14. if ( !function_exists( 'ftf_get_option' ) ) {
  15. function ftf_get_option( $request, $echo = false ) {
  16.    
  17.     ...
  18.    
  19. }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement