programing

Wordpress 사용자 지정기에 "바로 가기 편집" 아이콘을 추가하는 방법

goodsources 2023. 2. 10. 21:46
반응형

Wordpress 사용자 지정기에 "바로 가기 편집" 아이콘을 추가하는 방법

WordPress 4.7의 "Edit Shortcuts" 아이콘 새 기능을 커스터마이저에 추가하는 방법테마 커스터마이저의 임의의 위치에 이 아이콘을 추가하고 싶다.

워드프레스 바로 가기 편집 아이콘

이를 사용자 지정기 미리보기에서는 '표시되는 편집 바로 가기'라고 합니다.자세한 내용은 여기를 참조하십시오.

https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/

이는 선택적 새로 고침의 확장입니다.

$wp_customize->get_setting( 'blogname' )->transport        = 'postMessage';
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';

$wp_customize->selective_refresh->add_partial( 'blogname', array(
    'selector' => '.site-title a',
    'render_callback' => 'twentyfifteen_customize_partial_blogname',
) );
$wp_customize->selective_refresh->add_partial( 'blogdescription', array(
    'selector' => '.site-description',
    'render_callback' => 'twentyfifteen_customize_partial_blogdescription',
) );

렌더 콜백 콜 위치bloginfo( 'name' );그리고.bloginfo( 'description' );

https://make.wordpress.org/core/2016/02/16/selective-refresh-in-the-customizer/

공식 커스터마이저 매뉴얼도 참조하십시오.

따라서 기본적으로는 커스터마이저에서 선택적인 새로고침이 설정되어 있는 경우 기본적으로 이러한 새로고침이 표시됩니다.

언급URL : https://stackoverflow.com/questions/41011222/how-to-add-edit-shortcuts-icon-to-wordpress-customizer

반응형