0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

概要

Arkheではパーツを読み込み時に
フックが用意されておりそれを使って
表示を上書きすることができます

実際のコード

functions.php
add_filter('arkhe_part__header/logo', function($parts_content) {
    $tags_to_replace = [
        '<h1 class="l-header__logo has-image">',
        '<div class="l-header__logo has-image">'
    ];

    foreach ($tags_to_replace as $tag) {
        $parts_content = str_replace(
            $tag,
            str_replace('>', ' style="justify-content:center;">', $tag),
            $parts_content
        );
    }

    return $parts_content;
});

上記の例ではlogoを中央寄せしたかったので
「>」を「style="justify-content:center;">」
に置換しました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?