Example #1
0
/**
 * Display a url for a post based on parameters
 */
function the_intelliwidget_url()
{
    echo get_the_intelliwidget_url();
}
 /**
  * Display a url for a post based on parameters
  *
  * @param <integer> $post_id (optional)
  * @param <integer> $category_id (optional) - return category url
  * @return <string>
  */
 function the_intelliwidget_url($post_id = NULL, $category_id = NULL)
 {
     echo get_the_intelliwidget_url($post_id, $category_id);
 }