Quantcast
Channel: WordPress | サポートフォーラム »投稿一覧
Viewing all articles
Browse latest Browse all 1303

返信先: アイキャッチ画像が設定できない

$
0
0
function get_current_link() {
return (is_ssl() ? 'https' : 'http') . '://' . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"];
}

remove_filter('the_content', 'wpautop');

remove_filter('the_excerpt', 'wpautop');

function Include_my_php($params = array()) {
extract(shortcode_atts(array(
'file' => 'default'
), $params));
ob_start();
include(get_theme_root() . '/' . get_template() . "/$file.php");
return ob_get_clean();
}

add_shortcode('myphp', 'Include_my_php');

add_post_type_support( 'page', 'excerpt' );

remove_filter('the_excerpt', 'wpautop');
remove_filter('term_description','wpautop');

remove_action('wp_head','wp_generator');

add_theme_support('post-thumbnails');


add_filter( 'excerpt_length', function( $length ){
return 300;
}, 999 );

add_filter( 'excerpt_more', function( $more ){
return '…';
}, 999 );

shokun0803

こんにちは。
いつもありがとうございます。

functions.phpに記述しているのは上記が全てです。
他の記述を削除したりして確認してみましたが表示されなかったです。
また管理画面の投稿のオプションでアイキャッチ画像の表示にチェックが入っているかの確認ですがそもそもチェックボックスが表示されていない状況です。


Viewing all articles
Browse latest Browse all 1303

Trending Articles