Files
wp-cycling-stats/includes/frontend/assets.php
T
2026-02-05 12:06:38 +01:00

18 lines
414 B
PHP

<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Registers styles for frontend and enqueues them when shortcodes are used.
*/
function mystat_enqueue_frontend_assets() {
// Register the stylesheet. It will be enqueued by the shortcodes when needed.
$plugin_version = '1.0';
wp_register_style(
'mystat-frontend-styles',
MYSTAT_PLUGIN_URL . 'assets/css/frontend.css',
array(),
$plugin_version
);
}