下記コードをfunction.phpに追加。あとはルートラボのコースのURLを記事にはりつけるだけ。
wp_embed_register_handler( 'latlonglab', '#http://latlonglab\.yahoo\.co\.jp/route/watch\?id=([0-9a-z]+)#i', 'wp_embed_handler_latlonglab' );
function wp_embed_handler_latlonglab( $matches, $attr, $url, $rawattr ) {
$width = get_option('embed_size_w');
if(intval($width) === 0 ){
$width = $GLOBALS['content_width'];
$height = intval($width * 0.75);
}else{
$height = get_option('embed_size_h');
}
$embed = sprintf(
'<script type="text/javascript" encoding="UTF-8" src="http://latlonglab.yahoo.co.jp/route/paste?id=%s&width=%d&height=%d&mapstyle=map&graph=true&maponly=false"></script>',
esc_attr($matches[1]),
$width,
$height
);
return apply_filters( 'embed_latlonglab', $embed, $matches, $attr, $url, $rawattr );
}
完了
TODO
- ショートコードでwidth, height オプション使えるようにする
- 他の表示オプション使いたい人いるのかな?いたらショートコードで使えるようにする?