Your IP : 216.73.216.138


Current Path : /home/ereika83/www/wp-content/plugins/learndash-hub/src/
Upload File :
Current File : /home/ereika83/www/wp-content/plugins/learndash-hub/src/functions.php

<?php

declare( strict_types=1 );

/**
 * Get the Plugin URL.
 *
 * @param string $path The relative path.
 *
 * @return string
 */
function hub_asset_url( string $path ): string {
	$base_url = plugin_dir_url( dirname( __FILE__ ) );

	return untrailingslashit( $base_url ) . $path;
}

/**
 * Get the Plugin path.
 *
 * @param string $path The relative path.
 *
 * @return string
 */
function hub_path( string $path ): string {
	$base_path = plugin_dir_path( dirname( __FILE__ ) );

	return $base_path . $path;
}