<?php if(get_post_meta($post->ID, 'パフォーマー画像1', true)): ?> <!--サムネイルコード--> <?php $imagefield = get_imagefield('パフォーマー画像1'); $attachment = get_attachment_object($imagefield['id']); $imgattr = wp_get_attachment_image_src($imagefield['id'], 'thumbnail'); // thumbnail, large, medium, full を指定 echo '<image src="' . $imgattr[0] . '" width="' . $imgattr[1] . '" height="' . $imgattr[2] . '" alt="' . get_the_title() . '" title="' . get_the_title() . '" />'; ?> <!--サムネイルコード--> <?php endif; ?>
投稿者: doggstar
投稿TOP1記事の後ろだけ広告を入れる
<?php if ( have_posts () ) : while (have_posts()) : the_post(); $counter++; ?> <?php include("d_roop_box.php") ?> <?php if ($counter <= 1) { include("d_ad_1_2.php"); } ?> <!----閉じループタグ-----> <?php endwhile; endif; ?> <!---------------リセットクエリ---------------------------------------------> <?php wp_reset_query(); ?>
Custom Field GUI Utility Extender 注意点
データベースで設定を管理していないみたいだ!
wp-content/plugins/wp-plugin-CustomFieldGuiUtility-Release-v3.3.0/
の
conf.iniに すべて書いてあったわ!
User Role Editor 注意点
User Role Editorのバックアップ リストア時の不具合
多分タームとかと一緒、
クライアントの権限を変更したら出てきた。
Adminimizeも一度空セーブしなければいけない。
何か良く分からない
BackWPup
でバックしたやつを入れたからか??
http://www.saases.jp/blog/wordpress/3200/
タイトルを入力してくださいを変える
//タイトルを入力してくださいを変える function change_default_title( $title ) { $screen = get_current_screen(); if ( 'performer' == $screen->post_type ) { $title = 'パフォーマー名を入力してください。'; } else if ( $screen -> post_type == 'post' ) { $title = 'これは投稿だけ変更します'; } return $title; } add_filter('enter_title_here', 'change_default_title');
改行 プラグイン
http://camcam.info/wordpress/732
http://sonoyama.org/3033.html
http://syumart.jp/wordpress-brbrbr/
1 件目と2 件目の記事の間に広告を挿入する
http://nanokamo.com/articles/web-service/wordpress/wordpress-top-ad.html
<?php if ( have_posts () ) : while (have_posts()) : the_post(); $counter++; ?> <?php include("d_roop.php") ?> <?php if ($counter <= 1) { print <<<EOD アドセンスのコードを挿入 EOD; } ?> <!----閉じループタグ-----> <?php endwhile; endif; ?> <!---------------リセットクエリ---------------------------------------------> <?php wp_reset_query(); ?>
よくわからんが
モバイル用
while ( have_posts() ) : the_post(); $counter++; $i++; ?> <?php if ($counter == 3) { print <<<EOD <div class="hentry">アドセンスのコード</div> EOD; } ?>
アドセンス 覚え記録
アドセンスに申し込む
サイトを登録
メールがくる(きた)らしい
ログイン
広告を作る
貼る
空白が挿入される
まつ
今ここ
審査結果後
list タグ 最初と最後
http://stainless-note.tumblr.com/post/44410134726/css
「:first-child疑似クラス」と「:last-child疑似クラス」を使う。
サイドバー使う
//複数サイドバーを使える register_sidebars(5, array()); 指定の場所に <?php dynamic_sidebar();?>
WordPress Popular Posts [Popular Postsじゃない] 人気記事
http://wispyon.com/popular-posts/
Popular Postsの場合
Post-Plugin Libraryがいるらしい
投稿タグカンマ表示
<?php the_tags('タグ: ',' > '); ?>
参考
http://wpdocs.sourceforge.jp/%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88%E3%82%BF%E3%82%B0/the_tags
記事の文字を指定数で続きを読む
<?php echo mb_substr(get_the_excerpt(),0, 240);?><br /> <div class="alignright a_color" style="font-size:14px;"><a href="<?php the_permalink();?>">全文▶</a></div>
マニュアル設置覚え
wp-admin/imgに画像
Dにtori.php
ファンクションに
//管理メニュー追加 function test_menu_page() { $siteurl = get_option( 'siteurl' ); ?> <div class="wrap"> <h2>マニュアル</h2> <?php include("tori.php"); ?> </div> <?php } function test_admin_menu() { add_menu_page( 'マニュアル', 'マニュアル', 'read', __FILE__, 'test_menu_page' ); } add_action( 'admin_menu', 'test_admin_menu' );
めちゃくちゃなPDFをコピペする方法
イラレで開き バラバラ文字の文字を選択 コピーし 新しいテキストでペースト。
youtube を カスタムフィールドで管理する
http://kachibito.net/wordpress/youtube-tips.html
<?php if(get_post_meta($post->ID, 'YTid', true)): ?> <iframe width="649" height="395" src="http://www.youtube.com/embed/<?php echo get_post_meta($post->ID, 'YTid', true); ?>?rel=0" frameborder="0" allowfullscreen></iframe> <?php endif; ?>
VK Post Author Display改造 ポストオーサープラグイン
$profileUnit = '<h4>'.$author_box_title.'</h4>'. '<div id="avatar">'.get_avatar( get_the_author_meta('email'), 80 ).'</div>'. '<dl id="profileTxtSet">'. '<dt>'.'<span id="authorName">'.get_the_author_meta( 'display_name' ).'</span>'; if(isset($caption)):
を
$profileUnit = '<h4>'.$author_box_title.'</h4>'. '<div id="avatar">'.get_avatar(get_the_author_id(), 80).'</div>'. '<dl id="profileTxtSet">'. '<dt>'.'<span id="authorName">'.get_the_author_meta( 'display_name' ).'</span>';
‘
‘.
Simple Local Avatars 作者ごとにプロフィール画像を設定可能
http://aroun-d.com/2012/06/08/3915/
ちなみに個別記事のページ(single.php)に画像を表示したい場合は、
以下の書き方で表示できます。(80はサイズ)
echo get_avatar(get_the_author_id(), 80);
php the_time 投稿時間
http://webway.seesaa.net/article/128282171.html
'Y年m月d日(D)' ⇒ 2009年09月09日(木) 'Y/m/d' ⇒ 2009/09/09 'Y年n月j日(D)' ⇒ 2009年9月9日(木) 'Y/n/j' ⇒ 2009/9/9 'Y年m月d日(D)h時i分s秒' ⇒ 2009年09月09日(木)09時09分09秒 'Y/m/d h:i:s' ⇒ 2009/09/09 09:09:09
Simple Tags プラグイン 編集中
Simple Tagsは、記事投稿時にタグの管理をするためのプラグイン