LoginSignup
1
1

More than 5 years have passed since last update.

親サイト・子サイトの情報を表示する | WordPress

Last updated at Posted at 2016-07-28
<?php switch_to_blog( ブログID ) ?>
このタグで囲まれている間は、指定したブログIDの情報を取得
<?php restore_current_blog() ?>

子テーマで以下の記述をした場合、親テーマの情報を表示する

<?php switch_to_blog(1) ?>
    <header>
        <div class="logo">
            <a href="<?php echo home_url(); ?>">
                <h1 class="logo"><?php echo get_bloginfo('name'); ?></h1>
            </a>
        </div>
    </header>
<?php restore_current_blog() ?>
1
1
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
1
1