mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
7 lines
194 B
Text
7 lines
194 B
Text
function my_give_recurring_periods( $periods ) {
|
|
unset( $periods['day'] );
|
|
unset( $periods['week'] );
|
|
|
|
return $periods;
|
|
}
|
|
add_filter( 'give_recurring_periods', 'my_give_recurring_periods' );
|