Ticket #24686: 24686.4.diff
File 24686.4.diff, 1.0 KB (added by , 8 years ago) |
---|
-
src/wp-includes/option.php
665 665 } 666 666 667 667 /** 668 * Fires before returning a transient. 669 * 670 * @since 4.8.0 671 * 672 * @param string $transient The name of the transient. 673 * @param mixed $value Transient value. 674 */ 675 do_action( 'got_transient', $transient, $value ); 676 677 /** 668 678 * Filters an existing transient's value. 669 679 * 670 680 * The dynamic portion of the hook name, `$transient`, refers to the transient name. … … 1617 1627 } 1618 1628 1619 1629 /** 1630 * Fires before returning a site transient. 1631 * 1632 * @since 4.8.0 1633 * 1634 * @param string $transient The name of the transient. 1635 * @param mixed $value Transient value. 1636 */ 1637 do_action( 'got_site_transient', $transient, $value ); 1638 1639 /** 1620 1640 * Filters the value of an existing site transient. 1621 1641 * 1622 1642 * The dynamic portion of the hook name, `$transient`, refers to the transient name.