function clpr_coupon_title() {
global $clpr_options;
if ( ! in_the_loop() ) {
return;
}
if ( $clpr_options->link_single_page ) {
$title = ( mb_strlen( get_the_title() ) >= 87 ) ? mb_substr( get_the_title(), 0, 87 ) . '...' : get_the_title();
$title_attr = sprintf( esc_attr__( 'View the "%s" coupon page', APP_TD ), the_title_attribute( 'echo=0' ) );
echo html( 'a', array( 'href' => get_permalink(), 'title' => $title_attr, 'rel' => 'bookmark' ), $title );
} else {
the_title();
}
}
function clpr_coupon_title() {
global $clpr_options;
if ( ! in_the_loop() ) {
return;
}
if ( $clpr_options->link_single_page ) {
$title = ( mb_strlen( get_the_title() ) >= 87 ) ? mb_substr( get_the_title(), 0, 87 ) . '...' : get_the_title();
$title_attr = sprintf( esc_attr__( 'View the "%s" coupon page', APP_TD ), the_title_attribute( 'echo=0' ) );
echo html( 'a', array( 'href' => clpr_get_first_term_link( $post->ID, APP_TAX_STORE ), 'title' => $title_attr, 'rel' => 'bookmark' ), $title );
} else {
the_title();
}
}
There are currently 1 users browsing this thread. (0 members and 1 guests)