css, 未分類

$font-family-sans-serif: "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pr ...

javascript, 未分類

<style>#map-canvas {height: 300px;margin: 0px;padding: 0px}</style><script type="text/javascript&quo ...

compass, dreamweaver, scss, 未分類

インストールRubyInstaller for Windows
※Rubyの実行ファイルへ環境変数PATHを設定するgem install sassgem install compassconfig.rbhttp_path = &q ...

html, 未分類

<!DOCTYPE html><html lang="ja"><head><meta charset="utf-8"><meta name=&qu ...

facebook, 未分類

<html lang="ja"><head prefix="og: http://ogp.me/ns# website: http://ogp.me/ns/website#" xml ...

css, 未分類

<?phpfunction cacheBuster($filename) {if (file_exists($filename)) {echo date('YmdHis', filemtime($filename));} else { ...

htaccess, 未分類

※文字コード:utf-8

# キャッシュの期間を設定<IfModule mod_expires.c>ExpiresActive OnExpiresDefault "access plus 30 minute ...

dreamweaver, 未分類

1.テンプレートファイルの作成サイト定義をしておく。
雛形としたいファイルを作成。例:トップページなど
編集可能としたい部分を選択。
「挿入 → テンプレートオブジェクト → 編集可能領域」
任意の名前を付け、OK ...

cakephp, 未分類

<?php $this->Html->meta(array('name' => 'robots', 'content' => 'noindex,nofollow'), null, array('inline' ...

cakephp, 未分類

$this->paginate = array('maxLimit' => 1000);

■ページネーション
http://book.cakephp.org/2.0/ja/appendices/new-feature ...

cakephp, 未分類

■ckeditor
http://ckeditor.com/

■kcfinder(≠ ckfinder)
https://github.com/sunhater/kcfinder

各フォルダをj ...

bootstrap, 未分類

p{@media (max-width: $screen-xs-max) {color:red;}@media (min-width: $screen-sm-min) {color:gold;}@media (min-width: $scr ...

wordpress, 未分類

<?phpglobal $query_string;query_posts($query_string . "&post_type=カスタムポストタイプ名");?><?php if (have_ ...

wordpress, 未分類

<?phpif(has_post_thumbnail()){the_post_thumbnail('thumbnail');}else{echo '<img src="' . get_bloginfo('templat ...

wordpress, 未分類

function.php

/*================================================管理画面用 js 読み込み====================================== ...

sql, 未分類

create table if not exists テーブル名(id int not null auto_increment primary key,カラム名 varchar(255),created datetime,modified ...

html, 未分類

<!DOCTYPE html><html lang="ja"><head><meta charset="UTF-8"><title>titl ...

wordpress, 未分類

■メインループ

・デフォルト

<?php if(have_posts()): while ( have_posts() ): the_post(); ?><?php the_title(); ...

Jquery, 未分類

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script><script>w ...

cakephp, 未分類

public $components = array('Session');public $paginate = array('Timetable' => array('limit' => 5,'order' => arr ...

sublime text2, 未分類

1.Command + Shift + P
Install Packageと入力

2.SublimeServer、LiveReloadをインストール後、再起動

3.Google Cromeにアドオンをイ ...

bootstrap, wordpress, 未分類

_utilities.scssに以下記載。

.pull-right, .alignright{ float: right !important; margin-bottom: 1em; margin-left: 1em;}.pu ...

wordpress, 未分類

■xmlrpc.phpアクセス時にリダイレクト

//.htaccessに追加RewriteRule ^xmlrpc.php$ "http://0.0.0.0/" [R=301,L]//after# BEGIN ...

gulp, 未分類

Node.jsをインストール

http://nodejs.org/

バージョン確認

node -v

Gulpのインストール(グローバル環境)

npm install -g gulp

pack ...

html, 未分類

index.html

<!DOCTYPE html><html lang="ja"><head> <!-- 元ネタ http://minomon.jp/blog/?p ...

css, 未分類

$font-family-sans-serif: "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pr ...

wordpress, 未分類

カスタムフィールドテンプレートhttp://make.mapmap.biz/plugins/37/Custom Post Type UIhttp://kotori-blog.com/wordpress/custom_post_type_ui ...

wordpress, 未分類

<?php the_taxonomies(); ?>タクソノミー:商品のカテゴリー
ターム:aaa

の場合、
商品のカテゴリー: aaa

html, 未分類

<!DOCTYPE html><html lang="ja"><head><meta charset="UTF-8"><title>titl ...

wordpress, 未分類

基本

<?php$categories = get_categories();foreach($categories as $category) :?><h3><?php echo $categor ...

wordpress, 未分類

<?php global $template; var_dump($template); ?>

wordpress, 未分類

function include_jquery_cdn_loader() {if( !is_admin() ){//WP Default jQuery Load Deregister.wp_deregister_script('jquery ...

wordpress, 未分類

<script>jQuery(document).ready(function(){jQuery('#hoge').click(function(){alert('hoge');});});</script>

PAGE TOP