# force-refresh/2.1.4/includes/actions/admin/inc.admin-css.php

Force Refresh, version 2.1.4. 22 lines.

- Page: https://pluginprobe.com/plugins/force-refresh/2.1.4/code/includes/actions/admin/inc.admin-css.php
- Raw: https://pluginprobe.com/plugins/force-refresh/2.1.4/raw/includes/actions/admin/inc.admin-css.php
- Modified: 2020-09-16T23:04:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/force-refresh/2.1.4/code/includes/actions/admin/inc.admin-css.php#L10-L20`.

```php
<?php
/**
 * Our action to enqueue our Admin CSS.
 *
 * @package ForceRefresh
 */

namespace JordanLeven\Plugins\ForceRefresh;

/**
 * Hook used to enqueue CSS and JS.
 *
 * @return void
 */
add_action(
    'admin_head',
    function () {
        // Include the admin CSS.
        add_style( 'force-refresh-admin-css', '/dist/css/force-refresh-admin.css' );
    }
);

```
