連日すみません。
タイトルタグでエラーが出るとの御報告を受け、修正というかそもそもを削除しました。
あと、jQueryの読み込みも現在のWPではデバッグエラーが出るので修正致しました。
現在のver20140820では修正済みです。
修正内容
itiran.phpとkanren.phpとnewpost.php
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
の
title="<?php the_title(); ?>"
を削除して
<a href="<?php the_permalink(); ?>">
に。
functions.php
function load_cdn() { if ( !is_admin() ) { wp_deregister_script('jquery'); wp_enqueue_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js', array(), '1.7.1'); } } add_action('init', 'load_cdn');
を
function register_jq_script() { if (!is_admin()) { $script_dir = get_template_directory_uri(); wp_deregister_script( 'jquery' ); wp_enqueue_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js',array(), false, false); } } add_action('wp_enqueue_scripts','register_jq_script');
に。
以上ですm(._.)m