アイキャッチ画像を表示 クラス名をつけて

<?php the_post_thumbnail( 'post-thumbnail', 'class=alignright' ); ?>
//リンク付き
//クラスをつけ altにタイトル titleにタイトルをつけ blogsamを呼び出し
<a href="<?php the_permalink(); ?>">
<?php 
$title= get_the_title();
the_post_thumbnail('blog_sam',
array('class' => 'blog_sam_img','alt' =>$title, 'title' => $title)
); ?>
            </a>

引越 301使えない

http://rinare.com/20130625_rel_canonical_meta_refresh.html

el=”canonical”とmeta refresh併用

個別記事(エントリ)のページ用rel=”canonical”とmeta refresh

<link rel="canonical" href="http://exampl.com/xxxxx" />
<meta http-equiv="refresh" content="0;URL=http://exampl.com/xxxxx" />

それ以外のページ用(トップページなど)rel=”canonical”とmeta refresh

<link rel="canonical" href="http://exampl.com/" />
<meta http-equiv="refresh" content="0;URL=http://exampl.com/" />

ビジュアルエディタ表示と、実際に投稿された時の表示を揃えるカスタマイズ方法

PS Disable Auto Formattingを入れる

http://kininarunet.com/wordpress_tinymce.html

ファンクションに

//ビジュアルエディタ表示と、実際に投稿された時の表示を揃える
add_editor_style('editor-style.css');

テーマフォルダに
editor-style.css

p{
	margin: 0px;
	padding: 0px;
}

関連オススメ記事

サイドバー オススメ ページビューかな?
Popular Posts
http://wispyon.com/46/

記事下 関連記事

Similar Posts
Yet Another Related Posts Plugin(YARPP)

http://schoolsidejob.com/wordpress/%E9%96%A2%E9%80%A3%E8%A8%98%E4%BA%8B/
http://blog.teruterubouzu.net/wr/plugin/1237

CSS3 角丸 光彩内側

-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;

-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius:5px;

 -webkit-box-shadow: inset 0 0 5px 0 #ddd; /* Safari, Chrome用 */
  -moz-box-shadow: inset 0 0 5px 0 #ddd; /* Firefox用 */
  box-shadow: inset 0 0 5px 0 #ddd; /* CSS3 */

/*角とり 上だけ*/

.kado_ue_img{
-webkit-border-top-left-radius: 10px;
-webkit-border-top-right-radius: 10px;

-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;

border-top-left-radius: 10px;
border-top-right-radius: 10px;}

http://micomura.hatenablog.jp/entry/2012/02/08/225523
http://www.css-lecture.com/log/css3/css3-text-shadow-box-shadow.html