Files
wp-cycling-stats/includes/frontend/assets.php
T
2026-04-22 12:51:16 +02:00

18 lines
440 B
PHP

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