Reading. * * @package WordPress * @subpackage Fictioneer * @since 2.0 * @see partials/_loop.php * * @internal $args['nested'] Whether the post is nested inside another query. Default null. * @internal $args['context'] Render context of the partial ('loop' or 'shortcode_fictioneer_blog'). */ // No direct access! defined( 'ABSPATH' ) OR exit; // Setup $post_id = get_the_ID(); $title = fictioneer_get_safe_title( $post_id, 'post' ); $label = esc_attr( sprintf( _x( 'Continue reading %s', 'Read more link aria label', 'fictioneer' ), $title ) ); if ( ! get_option( 'fictioneer_show_full_post_content' ) && ! strpos( $post->post_content, '' ) ) { $content = '
' . fictioneer_get_excerpt() . '
'; } else { $content = apply_filters( 'the_content', get_the_content( fcntr( 'read_more' ) ) ); } ?>