Definition:
function the_permalink() {}
Defined filters
- the_permalink
apply_filters('the_permalink', get_permalink()
Source code
function the_permalink() {
echo apply_filters('the_permalink', get_permalink());
}
3029
Definition:
function the_permalink() {}
apply_filters('the_permalink', get_permalink()function the_permalink() {
echo apply_filters('the_permalink', get_permalink());
}
3029
Definition:
function the_modified_time($d = '') {}
apply_filters('the_modified_time', get_the_modified_time($d)function the_modified_time($d = '') {
echo apply_filters('the_modified_time', get_the_modified_time($d), $d);
}
3027
Definition:
function the_modified_date($d = '', $before='', $after='', $echo = true) {}
returns:Null if displaying, string if retrieving.
apply_filters('the_modified_date', $the_modified_date, $d, $before, $after)function the_modified_date($d = '', $before='', $after='', $echo = true) {
$the_modified_date = $before . get_the_modified_date($d) . $after;
$the_modified_date = apply_filters('the_modified_date', $the_modified_date, $d, $before, $after);
if ( $echo )
echo $the_modified_date;
else
return $the_modified_date;
}
3025
Definition:
function the_modified_author() {}
returns:The author’s display name, from get_the_modified_author().
function the_modified_author() {
echo get_the_modified_author();
}
3023