Files
wp-multisite-waas/inc/functions/documentation.php
2024-11-30 18:24:12 -07:00

26 lines
546 B
PHP

<?php
/**
* Documentation Functions
*
* @package WP_Ultimo\Functions
* @since 2.0.11
*/
// Exit if accessed directly
defined('ABSPATH') || exit;
/**
* Returns the content.
*
* @since 2.0.0
*
* @param string $slug The slug of the link to be returned.
* @param bool $return_default If we should return a default value.
* @return string
*/
function wu_get_documentation_url($slug, $return_default = true) {
return \WP_Ultimo\Documentation::get_instance()->get_link($slug, $return_default);
} // end wu_get_documentation_url;