Add transient_* filter. see #9048
git-svn-id: https://develop.svn.wordpress.org/trunk@10533 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c85b18238a
commit
49a72a40f6
@ -662,11 +662,13 @@ function get_transient($transient) {
|
||||
global $_wp_using_ext_object_cache, $wpdb;
|
||||
|
||||
if ( $_wp_using_ext_object_cache ) {
|
||||
return wp_cache_get($transient, 'transient');
|
||||
$value = wp_cache_get($transient, 'transient');
|
||||
} else {
|
||||
$transient = '_transient_' . $wpdb->escape($transient);
|
||||
return get_option($transient);
|
||||
$transient_option = '_transient_' . $wpdb->escape($transient);
|
||||
$value = get_option($transient_option);
|
||||
}
|
||||
|
||||
return apply_filters('transient_' . $transient, $value);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user