본문 바로가기
WP

워드프레스 사용자정의 쉬운 편집 버튼 적용하기

by 영감은어디에 2025. 3. 4.

function

    $wp_customize->add_setting( 'main_tel', array(
        'default'   => '02-1004-1004',
        'sanitize_callback' => 'wp_kses_post',
        'transport'         => 'refresh',
    ) );
    $wp_customize->add_control( 'main_tel', array(
        'label'    => __( '메인 전화번호', 'your-textdomain' ),
        'section'  => 'custom_colors2',
        'settings' => 'main_tel',
        'type'     => 'text',
    ) );

    $wp_customize->selective_refresh->add_partial( 'main_tel', array(
        'selector'        => '.edit_main_tel',
        'render_callback' => function() {
            return get_theme_mod('main_tel', '02-1004-1004');
        },
    ) );

front-page

<div class="tel edit_main_tel"><?php echo $maintel ?></div>