Changeset 606 for trunk/xpressme_integration_kit/wp-content/plugins
- Timestamp:
- May 18, 2010, 10:38:34 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/custom_functions.php
r567 r606 579 579 array_push($words, ' ... '); 580 580 $text = implode(' ', $words); 581 if (!empty($more_link_text)) $text .= '< p align="center"><a href="'. get_permalink() . "\">".$more_link_text .'</a></p>';581 if (!empty($more_link_text)) $text .= '<div class="xpress-more-link"><a href="'. get_permalink() . "\">".$more_link_text .'</a></div>'; 582 582 583 583 } … … 585 585 elseif(mb_strlen($text, $blog_encoding) > $excerpt_length_character) { 586 586 $text = mb_substr($text, 0, $xpress_config->excerpt_length_character, $blog_encoding) . ' ... '; 587 if (!empty($more_link_text)) $text .= '< p align="center"><a href="'. get_permalink() . "\">".$more_link_text .'</a></p>';587 if (!empty($more_link_text)) $text .= '<div class="xpress-more-link"><a href="'. get_permalink() . "\">".$more_link_text .'</a></div>'; 588 588 } 589 589
Note: See TracChangeset
for help on using the changeset viewer.