Title: [Theme: D5 Business Line] missing / broken function ?
Last modified: August 20, 2016

---

# [Theme: D5 Business Line] missing / broken function ?

 *  Resolved [wpprogrammeurs.nl](https://wordpress.org/support/users/wordpressprogrammeursnl/)
 * (@wordpressprogrammeursnl)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/theme-d5-business-line-missing-broken-function/)
 * FYI, theme throws error :
 *  Call to undefined function d5businessline_continue_reading_link() …….. public_html/
   sandbox/wp-content/themes/d5-business-line/functions.php on line 98
 * [http://wordpress.org/extend/themes/d5-business-line/](http://wordpress.org/extend/themes/d5-business-line/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Theme Author [D5 Creation](https://wordpress.org/support/users/d5creation/)
 * (@d5creation)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/theme-d5-business-line-missing-broken-function/#post-3004374)
 * The problem occurs when you use the_excerpt() instead of the_content()
    Open 
   the functions.php and go to Line no 97. Remove the 04 lines
 *     ```
       function d5businessline_auto_excerpt_more( $more ) {
       	return ' &hellip;' . d5businessline_continue_reading_link();
       	}
       	add_filter( 'excerpt_more', 'd5businessline_auto_excerpt_more' );
       ```
   
 * and paste the following lines
 *     ```
       function d5businessline_excerpt_length( $length ) {
       	global $blExcerptLength;
       	if ($blExcerptLength) {
           return $blExcerptLength;
       	} else {
           return 50; //default value
           } }
       	add_filter( 'excerpt_length', 'd5businessline_excerpt_length', 999 );
   
       	function d5businessline_excerpt_more($more) {
              global $post;
       	return '<a href="'. get_permalink($post->ID) . '" class="read-more">Read the Rest...</a>';
       	}
       	add_filter('excerpt_more', 'd5businessline_excerpt_more');
       ```
   
 *  Thread Starter [wpprogrammeurs.nl](https://wordpress.org/support/users/wordpressprogrammeursnl/)
 * (@wordpressprogrammeursnl)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/theme-d5-business-line-missing-broken-function/#post-3004376)
 * thank you much ….. solution works.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘[Theme: D5 Business Line] missing / broken function ?’ is closed to new
replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/d5-business-line/4.3/screenshot.
   png)
 * D5 Business Line
 * [Support Threads](https://wordpress.org/support/theme/d5-business-line/)
 * [Active Topics](https://wordpress.org/support/theme/d5-business-line/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/d5-business-line/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/d5-business-line/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [wpprogrammeurs.nl](https://wordpress.org/support/users/wordpressprogrammeursnl/)
 * Last activity: [13 years, 8 months ago](https://wordpress.org/support/topic/theme-d5-business-line-missing-broken-function/#post-3004376)
 * Status: resolved