source

WordPress에서 위젯의 HTML 코드를 변경하는 방법

ittop 2023. 3. 23. 23:10
반응형

WordPress에서 위젯의 HTML 코드를 변경하는 방법

위젯의 HTML 코드를 변경하는 방법사이드바를 변경하려고 했습니다.php는 결과가 없습니다.

어떤 도움이라도 주시면 대단히 감사하겠습니다.

기능에 정의되어 있습니다.php 파일.올바른 옵션을 전달하면 쉽게 변경할 수 있습니다.

if (function_exists('register_sidebar')) {
        $opts   = array(
        'name'          =>  'IndexWidgets',
        'before_widget' =>  '<div id="%1$s2" class="home_box %2$s">',
        'after_widget'  =>  '</div></div>',
        'before_title'  =>  '<h2>',
        'after_title'   =>  '</h2><div class="home_box_body">'
    );
    register_sidebar($opts);
}

참조용 Wordpress codex 링크입니다.http://codex.wordpress.org/Function_Reference/register_sidebar

언급URL : https://stackoverflow.com/questions/5135434/how-to-change-html-code-of-widgets-in-wordpress

반응형