astra_post_link( string $output_filter = '' )
Function to get Read More Link of Post
Description
Parameters
- $output_filter
-
(string) (Optional) Filter string.
Default value: ''
Return
(html) Markup.
Source
File: inc/blog/blog-config.php
function astra_post_link( $output_filter = '' ) { $enabled = apply_filters( 'astra_post_link_enabled', '__return_true' ); if ( ( is_admin() && ! wp_doing_ajax() ) || ! $enabled ) { return $output_filter; } $read_more_text = apply_filters( 'astra_post_read_more', __( 'Read More »', 'astra' ) ); $read_more_classes = apply_filters( 'astra_post_read_more_class', array() ); $post_link = sprintf( esc_html( '%s' ), '<a class="' . esc_attr( implode( ' ', $read_more_classes ) ) . '" href="' . esc_url( get_permalink() ) . '"> ' . the_title( '<span class="screen-reader-text">', '</span>', false ) . ' ' . $read_more_text . '</a>' ); $output = ' …<p class="read-more"> ' . $post_link . '</p>'; return apply_filters( 'astra_post_link', $output, $output_filter ); }
Expand full source code Collapse full source code View on Trac