DEV Community

kumamon
kumamon

Posted on

3

【WordPress】function.phpに入れておくといいもの

function archive_navi_template($template){
    $template = '
    <nav class="navigation %1$s" role="navigation">
        <div class="nav-links">%3$s</div>
    </nav>';
    return $template;
}
add_action( 'navigation_markup_template', 'archive_navi_template' );

function new_excerpt_more($more) {
return '・・・【続きを読む】';
}
add_filter('excerpt_more', 'new_excerpt_more');

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay