假设正确的URL为http://talentsofautism.com
...
The problem 正在呼叫colorful_continue_reading_link
, 这不是WordPress函数。
致命错误:调用未定义的函数colorful_continue_reading_link()
在/home/content/42/9357842/html/talentsofautism/wp-content/themes/d5-colorful/functions.php
在线67
A search suggests 它是D5 Colorful 主题,这就是您正在使用的主题。
Theme Name: D5 COLORFUL
Theme URI: http://d5creation.com/2012/08/06/colorful/
Author: D5 Creation
Author URI: http://d5creation.com/
你的主题似乎有问题。该函数是
used twice in the theme\'s functions.php
但我不知道它的定义是什么。是的
a relatively simple theme, 我不知道还能在哪里找到这个函数。我倾向于称之为虫子。
如果您注释掉使用的两个函数colorful_continue_reading_link
应纠正此问题:
// Replaces "[...]" (appended to automatically generated excerpts) with an ellipsis and colorful_continue_reading_link().
// function tied to the excerpt_more filter hook.
// function colorful_auto_excerpt_more( $more ) {
// return \' …\' . colorful_continue_reading_link();
// }
// add_filter( \'excerpt_more\', \'colorful_auto_excerpt_more\' );
//
// Adds a pretty "Continue Reading" link to custom post excerpts.
// function colorful_custom_excerpt_more( $output ) {
// if ( has_excerpt() && ! is_attachment() ) {
// $output .= colorful_continue_reading_link();
// }
// return $output;
// }
// add_filter( \'get_the_excerpt\', \'colorful_custom_excerpt_more\' );
那是绷带。联系主题开发人员以了解
colorful_continue_reading_link
应该是。