link_title

link_title

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('link_title') is found 1 times:

  • /wp-links-opml.php line 81
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
             * @since 2.2.0
             *
             * @param string $title The OPML outline title text.
             */
            $title = apply_filters( 'link_title', $bookmark->link_name );
            ?>
    <outline text="<?php echo esc_attr( $title ); ?>" type="link" xmlUrl="<?php echo esc_url( $bookmark->link_rss ); ?>" htmlUrl="<?php echo esc_url( $bookmark->link_url ); ?>" updated="
                                <?php
                                if ( '0000-00-00 00:00:00' !== $bookmark->link_updated ) {
                                    echo $bookmark->link_updated;
                                }