wordpress

例)

・HTMLソース<a href="http://hoge.com/%e3%81%82%e3%81%84%e3%81%86%e3%81%88%e3%81%8a">あいおうえ</a> ...

wordpress

/*================================================管理画面一覧にカスタムタクソノミー、タームを表示、ソート機能追加====================================== ...

wordpress

<?php$page_type = get_post_type();//echo $page_type;?><h2>FAQ</h2><?php$args = array( 'posts_per_pa ...

wordpress

<?php$args = array( 'posts_per_page' => '-1', 'order' => 'DESC', 'post_type' => 'post_type',//任意のポストタイプ 'ech ...

wordpress

function remove_dns_prefetch($hints, $relation_type) { if ('dns-prefetch' === $relation_type) { return array_diff(wp_dep ...

wordpress, さくら, 未分類

SMTP Host:hoge.sakura.ne.jpSMTP Port:587Encryption:暗号化なし。Authentication:はい: SMTP認証を使用します。

wordpress, 未分類

FB設定

1.FBにログイン
https://developers.facebook.com/

2.アプリ作成
ヘッダーナビゲーションで[Apps]を選択し、[Add a New App]を選択
(文 ...

wordpress, 未分類

要求されたアクションを実行するには、WordPress が Web サーバーにアクセスする必要があります。

# chown -R apache:apache ディレクトリ名

wordpress, 未分類

Breadcrumb NavXT
-view

<div id="breadcrumbs"><?php if(function_exists('bcn_display')){bcn_d ...

wordpress, 未分類

-functions.php

add_filter('widget_title', 'no_widget_title');function no_widget_title($title ) {return null;}

wordpress, 未分類

・functions.php

register_sidebar(array('name' => 'sidebar','id' => 'sidebar','description' => '','before_w ...

wordpress, 未分類

<?php$args = array('taxonomy' => 'ターム');$taxs = get_categories($args);//var_dump($taxs);foreach($taxs as $tax): ?& ...

wordpress, 未分類

tax_タクソノミー名ターム名

https://goo.gl/pjTlR3

Jquery, wordpress, 未分類

大抵のwordpressテーマでは、jQuery本体自体はすでに読み込まれているものの、jQueryと他のjavascriptライブラリがコンフリクトしないように、jQueryが使用する「$」という関数名の別名定義を未定義状態にしてい ...

wordpress, 未分類

<?php$sticky = get_option( 'sticky_posts' );$args = array('posts_per_page' => 1,'post__in' => $sticky,'post_typ ...

wordpress, 未分類

function change_default_title( $title ) {$screen = get_current_screen();if ( 'POST_TYPE' == $screen->post_type ) {$ti ...

wordpress, 未分類

tour-lists

tour-lists

■参考
https://gist.github.com/ericjuden/5136638
https://github.com/souparn ...

wordpress, 未分類

function day_of_week($date) {$get_date = get_field($date);$datetime = date_create($get_date);$week = array("日" ...

cakephp, wordpress, 未分類

/app
/blog ← ここにWordPressを配置
/lib
/plugin
/vendors

・app直下の.htaccess

<IfModule mod_rewrite ...

wordpress, 未分類

■投稿画面

[is_not_mymobile]PC表示内容[/is_not_mymobile][is_mymobile]SP表示内容[/is_mymobile]

■functions.php

/*=========== ...

wordpress, 未分類

■カスタムヘッダーでアップロードした画像の情報取得
・get_uploaded_header_images()

[16]=> array(6) { ["attachment_id"]=> ...

wordpress, 未分類

<?php$taxonomy_name = 'タクソノミー名';$taxonomys = get_terms($taxonomy_name);if(!is_wp_error($taxonomys) && count($ ...

wordpress, 未分類

<?php//タクソノミー$taxonomies = array('category-type');//オプションを指定$args = array('post_type' => 'nursery',);$terms = get_ ...

wordpress, 未分類

<?php$args = array('tax_query' => array(array('taxonomy' => 'タクソノミー名','field' => 'slug','terms' => array( ...

wordpress, 未分類

wp_register_script($handle, $src, $deps, $ver, $in_footer);

引数名説明デフォルト$handle登録する識別名(必須)None$src登録するJavascriptのパス( ...

wordpress, 未分類

・functions.php

add_theme_support('post-thumbnails');//カスタムサイズadd_image_size('mysize' ,100, 100 ,true );

・ビュー ...

wordpress, 未分類

・functions.php

//縮小時に切り抜き:true、しない場合:false(省略時:false)add_image_size('任意の名前', サイズ, サイズ, true or false);//例add_image ...

wordpress, 未分類

設定>表示設定:1ページに表示する最大投稿数「1」

wordpress, 未分類

//WP_Query arguments$args = array ();//The Query$query = new WP_Query( $args );

■参考
・https://wpdocs.osdn.jp/%E9%96 ...

wordpress, 未分類

http://theorthodoxworks.com/wordpress/related-on-post-type-single-page/
archive

wordpress, 未分類

<?php$args = array('posts_per_page' => -1,'cat' => '','offset' => '','category_name' => '','orderby' => ...

wordpress, 未分類

ページタイトル|ブログ名

<title><?php wp_title('|',true,'right'); ?><?php bloginfo('name'); ?></title> ...

wordpress, 未分類

トップページ

<?php if ( is_home() || is_front_page() ) : ?>トップページの場合のみ表示<?php endif; ?>投稿の個別ページ<?php if(i ...

wordpress, 未分類

<?php echo get_the_term_list($post->ID, 'prefectures','','、'); ?><?php the_taxonomies($args); ?>

wordpress, 未分類

<?php$paged = get_query_var('paged');$args = array('posts_per_page' => '-1','cat' => '','tax_query' => array ...

wordpress, 未分類

・functions.php

/*================================================php file include================================= ...

wordpress, 未分類

Akismet
Breadcrumb NavXT
Advanced Custom Field
https://wordpress.org/plugins/advanced-custom-fields/

wordpress, 未分類

the_field('ID');the_field('explain');echo get_field('ID');echo get_field('explain');$data = get_post_custom();echo $data ...

wordpress, 未分類

【the_category()】

<?php echo get_the_term_list($post->ID, 'タクソノミー名', '', ', '); ?>

【the_tags()】

<? ...

wordpress, 未分類

ホームis_home()ホーム
(ブログ記事のホーム)「フロントページの表示」設定が「最新の投稿」の場合はホーム(サイトURLのページ)、「固定ページ」の場合は「投稿ページ」に設定したページでtrueを返すis_front_ ...

wordpress, 未分類

・functions.php

//MW WP formfunction ajaxzip3_scripts() { wp_enqueue_script( 'ajaxzip3-script', 'https://ajaxzip3.g ...

wordpress, 未分類

is_home()

メインブログページが表示されている場合。

is_front_page()

表示設定の「トップページの表示」として 設定されているページが表示されている場合。

is_single()

個別投稿ページ ...

wordpress, 未分類

Breadcrumb NavXT 日本語カタログ | ユニマージュ

wordpress, 未分類

ページの種類高←テンプレート階層優先度→低404エラーページ404.phpindex.php検索結果ページsearch.phpindex.phpカスタム分類アーカイブtaxonomy-{taxonomy}-{term}.phptaxonom ...

wordpress, 未分類

■functions.php

if(function_exists('register_sidebars')) {register_sidebar(array('name' => 'サイドバー1','id' => ' ...

wordpress, 未分類

■functions.php

$custom_header_defaults = array('default-image' => get_bloginfo('template_url').'/img/img_custom ...

wordpress, 未分類

■function.php

register_nav_menus(array('main_nav' => 'メインナビゲーション','sub_nav' => 'サブナビゲーション',));

■テンプレート

wordpress, 未分類

<?php$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;$args = array('posts_per_page' => 5,'cat' => ...

wordpress, 未分類

http://www.webcreatorbox.com/tech/japanese-wordpress-cheat-sheet/

wordpress, 未分類

http://qiita.com/mayukojpn/items/a279a5f717f0a33a2aa5

http://downloads.wordpress.org/plugin/wordpress-importer. ...

wordpress, 未分類

https://github.com/jawordpressorg/theme-test-data-ja

wordpress, さくら, 未分類

■FTP設定に関する情報
FTPサーバ:xxx.sakura.ne.jp
FTPアカウント:xxx
パスワード:xxx(仮登録完了のお知らせメールに記載)

■データベースの新規作成
データベ ...

wordpress, 未分類

config.phpMySQL settings
//初期設定
define(‘DB_USER’, ‘root’);
define(‘DB_PASSWORD ...

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 読み込み====================================== ...

wordpress, 未分類

■メインループ

・デフォルト

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

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

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

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