2
2

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 5 years have passed since last update.

ローカルにWordPress+FoundationPress環境を構築する

Last updated at Posted at 2015-01-06

Varying-Vagrant-Vagrants ver1.2 を使ってWordPress開発環境をMacに作って、更にZURBのFoundationPress ver5.4.7をインストールするまで。
執筆時点での各バージョンも書いておきます。
#Varying-Vagrant-Vagrantsのインストール
まずはVirtualBox 4.3.20をインストール
次はvagrant 1.6.5もインストール

hostsupdaterをインストール

 vagrant plugin install vagrant-hostsupdater

でgit cloneします。

 git clone git://github.com/10up/varying-vagrant-vagrants.git vagrant-local

 cd vagrant-local
 vagrant up

WordPress日本語版をダウンロード&解凍しておいて

wordpress-default.png

この中にドロップしましょう。どうもそのまま日本語化が出来なかったのでこんなスマートではない方法になってしまいました。

http://local.wordpress.dev/wp-admin
から入ります。ユーザ admin
パスワードはpassword

##FoundationPressのインストール
FoundationPressをダウンロードします。
バージョン管理のためにGitHub for Macを立ち上げます。

Open.png

ここに任意の名前(ここではexample)でリポジトリを作りそこに先ほど解凍しておいたFoundationPressの中をそのままドロップします。

 cd /Users/Desktop/vagrant-local/www/wordpress-default/wp-content/themes/example
 sudo npm install && bower install && grunt build
 grunt

これで開発環境が整いました。
あとはグリグリいろんなところをいじくるだけ。

##編集するところ
style_css_-_Users_satouatsushi_Desktop_vagrant-local_www_wordpress-default_wp-content_themes_nittosha-_Atom.png

注意点
_setting.scssを編集すればOKなのですが、topbarナビゲーションのアクティブのところだけ、#272727になってしまいますので注意が必要です。

scss>site>_structure.scssを編集します。

// A more subtle background color for the active menu item
.top-bar-section li.active:not(.has-form) a:not(.button)  {
    background: #272727;
}
.top-bar-section li.active:not(.has-form) a:hover:not(.button) {
    background: #202020;
}

ここの#以下を任意の色に変える必要があります。

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?