概要
elementor/frontend/before_register_styles
アクションは、Elementorがスタイルを登録する前にカスタムスタイルを追加したり、既存のスタイルを変更したりするために使用されます。このフックを利用することで、サイトのデザインやユーザーインターフェースをより柔軟にカスタマイズすることが可能です。このアクションは、主に次のような機能実装で利用されます。
- テーマのカスタムスタイルの追加
- プラグイン独自のスタイルシートの読み込み
- 条件に応じたスタイルシートの読み込みの制御
- 既存のスタイルの上書き
- 新しいカスタム CSS の追加
- ページやセクションごとに異なるスタイルの適用
構文
add_action('elementor/frontend/before_register_styles', 'your_custom_function');
パラメータ
このフックには特にパラメータは渡されません。
戻り値
このアクションは、戻り値を持ちません(void)。
使用可能なプラグインElementorのバージョン
Elementor 2.0 以降で使用可能です。
使用可能なWordPressのバージョン
WordPress 4.0 以降で使用可能です。
サンプルコード
サンプルコード1
function add_custom_style() {
wp_enqueue_style('custom-style', get_template_directory_uri() . '/css/custom-style.css');
}
add_action('elementor/frontend/before_register_styles', 'add_custom_style');
このサンプルコードは、カスタムスタイルシートをテーマディレクトリから読み込むためのものです。
サンプルコード2
function conditional_custom_styles() {
if (is_page('about')) {
wp_enqueue_style('about-page-style', get_template_directory_uri() . '/css/about-page.css');
}
}
add_action('elementor/frontend/before_register_styles', 'conditional_custom_styles');
このコードは、特定のページ(「about」)のみにスタイルを追加します。
サンプルコード3
function remove_elementor_default_styles() {
wp_dequeue_style('elementor-icons');
}
add_action('elementor/frontend/before_register_styles', 'remove_elementor_default_styles');
このサンプルは、Elementorのデフォルトアイコンスタイルシートを削除するものです。特定のデザイン上の理由から不要なスタイルを削除したい場合に使用します。
サンプルコード4
function add_custom_google_font() {
wp_enqueue_style('custom-google-fonts', 'https://fonts.googleapis.com/css?family=Open+Sans|Roboto');
}
add_action('elementor/frontend/before_register_styles', 'add_custom_google_font');
このコードは、Google Fontsから特定のフォントスタイルを読み込むためのものです。
サンプルコード5
function add_dynamic_style() {
$dynamic_style = "
body {
background-color: " . get_option('background_color') . ";
}
";
wp_add_inline_style('elementor-frontend', $dynamic_style);
}
add_action('elementor/frontend/before_register_styles', 'add_dynamic_style');
このサンプルコードは、WordPressのオプションから取得した背景色を使って動的にスタイルを追加するものです。
この関数のアクションでの使用可能性
アクション | 使用可能 |
---|---|
mu_plugin_loaded | |
registered_post_type | |
plugins_loaded | |
wp_roles_init | |
setup_theme | |
after_setup_theme | |
set_current_user | |
init | |
register_sidebar | |
wp_loaded | |
send_headers | |
parse_query | |
pre_get_posts | |
wp | |
template_redirect | |
get_header | |
wp_head |