前提・実現したいこと
PHPのコードチェック
pho code checkerでチェックしたところエラーが出ましたがどなたか詳しく教えていただけますでしょうか?
発生している問題・エラーメッセージ
FATAL ERROR Uncaught Error: Call to undefined function shortcode_exists() in /home4/phptest/public_html/code.php70(5) : eval()'d code:11 Stack trace: #0 /home4/phptest/public_html/code.php70(5): eval() #1 {main} thrown on line number 11
該当のソースコード
<?php
/*
Plugin Name: kenyspecial2
Plugin URI:
Description: original plugins
Author: keny
Version: 1.0
Author URI:
*/
if (!shortcode_exists('popular_list')) {
add_shortcode('popular_list', 'popular_entries_shortcode');
}
if ( !function_exists( 'popular_entries_shortcode' ) ):
function popular_entries_shortcode($atts) {
extract(shortcode_atts(array(
'days' => 'all',
'count' => 5,
'type' => 'default',
'rank' => 0,
'pv' => 0,
'cats' => 'all',
'children' => 0,
'bold' => 0,
'arrow' => 0,
'class' => null,
), $atts, 'popular_list'));
$cat_ids = array();
if ($cats && $cats != 'all') {
$cat_ids = explode(',', $cats);
}
$atts = array(
'days' => $days,
'entry_count' => $count,
'entry_type' => $type,
'ranking_visible' => $rank,
'pv_visible' => $pv,
'cat_ids' => $cat_ids,
'children' => $children,
'bold' => $bold,
'arrow' => $arrow,
'class' => $class,
);
ob_start();
generate_popular_entries_tag($atts);
//_v($atts);
//generate_popular_entries_tag($days, $count, $type, $rank, $pv, $categories);
$res = ob_get_clean();
return $res;
}
endif;
### 補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。