-
Notifications
You must be signed in to change notification settings - Fork 216
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enqueuing fw stylesheet #4
Comments
If you want to enqueue a stylesheet or javascript that is needed only for your theme, add to The To enqueue only in admin area or only on frontend, you should use the if (is_admin()) {
wp_enqueue_script('my-admin-script', ...);
} else {
wp_enqueue_script('my-front-end-script', ...);
} If I understand correctly, you are working on rtl support for framework, and want to include that feature in the core. In that case please make a pull request when you are done and we will review it.
We register all scripts and styles need for backend in |
this was my purpose of the quersion to be more specific: i can see that fw.css is loaded in the front and backend as well . but i didn't find the place where it was enqueued for example |
Could you give us a link to a page where the |
my mistake it's not enqueued in the Front-end thanks for your quick response |
i'm working on rtl-support version of the framework and i have finished customizing the new fw-rtl.css.
I found that in framework/core/components/backend.php the scripts and styles are registered but i can't find where it was enqueued
I hope to understand my english :)
The text was updated successfully, but these errors were encountered: