我对使用瞬变是个新手。这是创建瞬态并将其从DB中提取而不是使用http api的正确格式吗?
我已经标准化了我的代码片段,以便其他人也可以重复检查他们的代码。。。
function google_transient() {
$url = \'http://www.google.com\';
$the_whole_body = wp_remote_retrieve_body( wp_remote_get($url) );
$transient_name = \'google\';
// Get any existing copy of our transient data
if ( false === ( $transient_name = get_transient( $transient_name ) ) ) {
// It wasn\'t there, so regenerate the data and save the transient
set_transient( $transient_name, $url, 60*24); // 24 hour cache
}
return $the_whole_body;
}