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?

More than 3 years have passed since last update.

wordpressまとめ

Last updated at Posted at 2019-12-15

##スラッグ

設定

  • パーマリンク
    • 投稿名
      へ変更

メニュー出し分け

管理メニュー
	外観 - メニュー
	
	出し分けするメニュー複数作成
	
header.php
	
	if (is_user_logged_in()) {
		$args = array(
			'menu' => 'main-menu',
			'menu_class' => 'nav navbar-nav',
			'container' => false,
		);
	} else {
		$args = array(
			'menu' => 'menu-02',
			'menu_class' => 'nav navbar-nav',
			'container' => false,
		);
	}

	wp_nav_menu($args);
	
※ ナビゲーションメニューのcss は 上記 menu_class で設定?

##サイドメニュー出し分け

###sidebar.phpと sidebar-2.php (出し分け用複数 sidebarファイル用意)

sidebar-2.php に

書く

index or page or カスタムテンプレート

####出し分け

##固定ページ テンプレート変更

下記両方ともslugの指定が必要

① テンプレート階層 page-{slug名}

page-{slug名}.php ファイルをつくる

② 管理画面 テンプレートの指定から

template

/**
Template Name: 固定ページの新規テンプレート1
**/

で指定して

管理画面、テンプレートの選択で指定

エスケープ

  1. esc_url
  2. esc_html
  3. esc_attr

cssのurlに付加する文字列

filemtime ( get_template_directory() . '/style.css' )

更新時間 UNIX TIME ?ver=15555503967 ...
style.css を更新する度に変化

<time datetime="<?php echo esc_attr( get_the_date( DATE_W3C ) ); ?>">
<?php echo esc_html( get_the_date() ); ?>
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?