我有以下瞬态,但如果用户更改$url的值,则不应使用瞬态。我想知道在瞬态中使用这个变量最合适的方法是什么。我是否应该使用Options API保存$url的值以将其与新值进行比较?
if ( false === ( $videos_result = get_transient( \'html\' ) )){
//HTTP API
$videos_result = wp_remote_get( $url );
$response_code = wp_remote_retrieve_response_code( $videos_result );
$response_message = wp_remote_retrieve_response_message( $videos_result );
set_transient(\'html\', $videos_result, HOUR_IN_SECONDS );
} else{
$response_code = 200;
}