mirror of
git://develop.git.wordpress.org/
synced 2025-02-25 17:13:30 +01:00
Add get_lastpostdate and 'get_lastpostdatemodified filters. Props rob1n. fixes #4801
git-svn-id: https://develop.svn.wordpress.org/trunk@5918 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
51592ad7f2
commit
e77ed87b6c
@ -1670,7 +1670,7 @@ function get_lastpostdate($timezone = 'server') {
|
|||||||
} else {
|
} else {
|
||||||
$lastpostdate = $cache_lastpostdate[$blog_id][$timezone];
|
$lastpostdate = $cache_lastpostdate[$blog_id][$timezone];
|
||||||
}
|
}
|
||||||
return $lastpostdate;
|
return apply_filters( 'get_lastpostdate', $lastpostdate );
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_lastpostmodified($timezone = 'server') {
|
function get_lastpostmodified($timezone = 'server') {
|
||||||
@ -1697,7 +1697,7 @@ function get_lastpostmodified($timezone = 'server') {
|
|||||||
} else {
|
} else {
|
||||||
$lastpostmodified = $cache_lastpostmodified[$blog_id][$timezone];
|
$lastpostmodified = $cache_lastpostmodified[$blog_id][$timezone];
|
||||||
}
|
}
|
||||||
return $lastpostmodified;
|
return apply_filters( 'get_lastpostmodified', $lastpostmodified );
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
Loading…
x
Reference in New Issue
Block a user