the_shortlink [ WordPress Function ]
the_shortlink ( $text = '', $title = '', $before = '', $after = '' )
| Parameters: |
|
| Defined at: |
|
Benzer Fonksiyonlar: the_author_link, wp_get_shortlink, get_shortcut_link, the_author_posts_link, the_author_login
Display the Short Link for a Post
Must be called from inside "The Loop"
Call like the_shortlink(__('Shortlinkage FTW'))
Source
<?php
function the_shortlink( $text = '', $title = '', $before = '', $after = '' ) {
global $post;
if ( empty( $text ) )
$text = __('This is the short link.');
if ( empty( $title ) )
$title = the_title_attribute( array( 'echo' => false ) );
$shortlink = wp_get_shortlink( $post->ID );
if ( !empty( $shortlink ) ) {
$link = '<a rel="shortlink" href="' . esc_url( $shortlink ) . '" title="' . $title . '">' . $text . '</a>';
$link = apply_filters( 'the_shortlink', $link, $shortlink, $text, $title );
echo $before, $link, $after;
}
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- Function Reference/the shortlink « WordPress Codex
Description. Used on single post permalink pages, this template tag displays a " URL shortening" link for the current post. By default, this will mean the URL has a ...
codex.wordpress.org - WordPress › Support » the_shortlink How to show just link?
I am using the <?php the_shortlink(); ?> code and I want to display just the link and not the default text. For example, it will say something like "Blog Post ...
wordpress.org - WordPress Hidden Gems: the_shortlink() and the default permalink ...
Sep 16, 2010 ... There's a new function in WordPress 3.0, the_shortlink() . You can place this in your single.php theme file to print a shorter URL for the current ...
sillybean.net - Add the_shortlink() | WP First Aid
Jul 22, 2010 ... Using the URL generated by the_shortlink() will always resolve correctly, using the verbose URL of the permalink structure may cause issues if ...
wpfirstaid.com
Kullanýcý Tartýþmalarý [ wordpress.org ]
- stevec828 on "the_shortlink How to show just link?"
- Ipstenu on "the_shortlink() and the loop"
- Triple P on "the_shortlink() and the loop"
- James on "the_shortlink How to show just link?"
- ccmovies on "the_shortlink How to show just link?"
- ccmovies on "the_shortlink How to show just link?"
- James on "the_shortlink How to show just link?"
- ccmovies on "the_shortlink How to show just link?"
- ccmovies on "the_shortlink How to show just link?"
- Joseph on "the_shortlink How to show just link?"