Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




get_author_feed_link [ WordPress Function ]

get_author_feed_link ( $author_id, $feed = '' )
Parameters:
  • (int) $author_id ID of an author.
  • (string) $feed Optional. Feed type.
Returns:
  • (string) Link to the feed for the author specified by $author_id.
Defined at:



Retrieve the feed link for a given author.

Returns a link to the feed for all posts by a given author. A specific feed can be requested or left blank to get the default feed.

Source


<?php
function get_author_feed_link$author_id$feed '' ) {
    
$author_id = (int) $author_id;
    
$permalink_structure get_option('permalink_structure');

    if ( empty(
$feed) )
        
$feed get_default_feed();

    if ( 
'' == $permalink_structure ) {
        
$link home_url("?feed=$feed&amp;author=" $author_id);
    } else {
        
$link get_author_posts_url($author_id);
        if ( 
$feed == get_default_feed() )
            
$feed_link 'feed';
        else
            
$feed_link "feed/$feed";

        
$link trailingslashit($link) . user_trailingslashit($feed_link'feed');
    }

    
$link apply_filters('author_feed_link'$link$feed);

    return 
$link;
}
?>

Examples [ wp-snippets.com ]

Google Arama Sonuçlarý

Dahasý ...

Kullanýcý Tartýþmalarý [ wordpress.org ]

- Bulunamadý -

Yeni bir konu yaz ...

0 User Note(s)

Henüz yok. Ýlk sen ol!

Yeni Ekle ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics