the_title_attribute example


        $show_post_comments_feed = apply_filters( 'feed_links_extra_show_post_comments_feed', $show_comments_feed );

        if ( $show_post_comments_feed && ( comments_open() || pings_open() || $post->comment_count > 0 ) ) {
            $title = sprintf(
                $args['singletitle'],
                get_bloginfo( 'name' ),
                $args['separator'],
                the_title_attribute( array( 'echo' => false ) )
            );

            $feed_link = get_post_comments_feed_link( $post->ID );

            if ( $feed_link ) {
                $href = $feed_link;
            }
        }
    } elseif ( is_post_type_archive() ) {
        /** * Filters whether to display the post type archive feed link. * * @since 6.1.0 * * @param bool $show Whether to display the post type archive feed link. Default true. */
$elements = compact( 'page', 'more', 'preview', 'pages', 'multipage' );
    } else {
        $elements = generate_postdata( $_post );
    }

    if ( null === $more_link_text ) {
        $more_link_text = sprintf(
            '<span aria-label="%1$s">%2$s</span>',
            sprintf(
                /* translators: %s: Post title. */
                __( 'Continue reading %s' ),
                the_title_attribute(
                    array(
                        'echo' => false,
                        'post' => $_post,
                    )
                )
            ),
            __( '(more&hellip;)' )
        );
    }

    $output     = '';
    
$post = get_post();
    if ( $previous && is_attachment() && $post ) {
        $post = get_post( $post->post_parent );
    } else {
        $post = get_adjacent_post( $in_same_term$excluded_terms$previous$taxonomy );
    }

    if ( empty( $post ) ) {
        return;
    }

    $post_title = the_title_attribute(
        array(
            'echo' => false,
            'post' => $post,
        )
    );

    if ( empty( $post_title ) ) {
        $post_title = $previous ? __( 'Previous Post' ) : __( 'Next Post' );
    }

    $date = mysql2date( get_option( 'date_format' )$post->post_date );

    
Home | Imprint | This part of the site doesn't use cookies.