' . "\n", esc_url( get_bloginfo( 'pingback_url' ) ) );
}
}
add_action( 'wp_head', 'book_land_pingback_header' );
function book_land_excerpt_more( $link ) {
if ( is_admin() ) {
return $link;
}
$link = sprintf( '
%2$s
',
esc_url( get_permalink( get_the_ID() ) ),
sprintf( __( 'Continue reading', 'hotel-paradise' ) )
);
return ' … ' . $link;
}
add_filter( 'excerpt_more', 'book_land_excerpt_more' );
function book_land_front_page_template( $template ) {
return is_home() ? '' : $template;
}
add_filter( 'frontpage_template', 'book_land_front_page_template' );