私は以下のコードを持っています
add_action('the_excerpt','limit_the_content');
function limit_the_content($content){
$settings = get_option('mytheme_options');
$word_limit = $settings['numberofwordsexcerpt'];
$words = explode(' ', $content);
return implode(' ', array_slice($words, 0, $word_limit));
}
add_action('the_excerpt_slider','limit_the_content_slider');
function limit_the_content_slider($content_slider){
$settings = get_option('mytheme_options');
$word_limit_slider = $settings['numberofwordsexcerptslider'];
$words_slider = explode(' ', $content_slider);
return implode(' ', array_slice($words_slider, 0, $word_limit_slider));
}
そして、index.phpで2番目の関数をトリガーしようとしています
<?php the_excerpt_slider(); ?>
エラーが表示されます:
Fatal error: Call to undefined function the_excerpt_slider() in
私がトリガーしている最初のものはうまく機能します
<?php the_excerpt(); ?>
私を助けてください。