WordPress中的SacchaOne主題錯誤Warning: sprintf(): Too few arguments in /www/…/wp-content/themes/sacchaone/inc/template-functions.php on line 129解決
Thank you for reading this post, don't forget to subscribe!此問題來自於template-functions.php文件的129行
sprintf()方法的異常.
我直接將其改為:
// $readmore = ' ... ' . sprintf( '<a href="' . get_the_permalink( $post->ID ) . '">%s</a>', __( 'Read More', 'sacchaone' ) );
$readmore = ' ... ' . '<a href="' . get_the_permalink( $post->ID ) . '">詳情</a>';
這樣就不會出現錯誤~~~