40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
<?php
|
|
// chromax_hdr_email_title
|
|
function chromax_hdr_email_title_render_callback() {
|
|
return get_theme_mod( 'chromax_hdr_email_title' );
|
|
}
|
|
|
|
// chromax_hdr_top_ads_title
|
|
function chromax_hdr_top_ads_title_render_callback() {
|
|
return get_theme_mod( 'chromax_hdr_top_ads_title' );
|
|
}
|
|
|
|
// chromax_hdr_time_title
|
|
function chromax_hdr_time_title_render_callback() {
|
|
return get_theme_mod( 'chromax_hdr_time_title' );
|
|
}
|
|
|
|
// chromax_hdr_btn_lbl
|
|
function chromax_hdr_btn_lbl_render_callback() {
|
|
return get_theme_mod( 'chromax_hdr_btn_lbl' );
|
|
}
|
|
|
|
// chromax_hdr_contact_ttl
|
|
function chromax_hdr_contact_ttl_render_callback() {
|
|
return get_theme_mod( 'chromax_hdr_contact_ttl' );
|
|
}
|
|
|
|
// chromax_hdr_contact_txt
|
|
function chromax_hdr_contact_txt_render_callback() {
|
|
return get_theme_mod( 'chromax_hdr_contact_txt' );
|
|
}
|
|
|
|
// chromax_footer_mid_ttl
|
|
function chromax_footer_mid_ttl_render_callback() {
|
|
return get_theme_mod( 'chromax_footer_mid_ttl' );
|
|
}
|
|
|
|
// chromax_footer_copyright_text
|
|
function chromax_footer_copyright_text_render_callback() {
|
|
return get_theme_mod( 'chromax_footer_copyright_text' );
|
|
} |