wpsc_feed_update()
Delete feeds when the site is updated so that feed files are always fresh
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
wpsc_feed_update( $type, $permalink );
- $type (обязательный)
- -
- $permalink (обязательный)
- -
Код wpsc_feed_update() wpsc feed update WPSCache 1.12.4
function wpsc_feed_update( $type, $permalink ) { $wpsc_feed_list = get_option( 'wpsc_feed_list' ); update_option( 'wpsc_feed_list', array() ); if ( is_array( $wpsc_feed_list ) && ! empty( $wpsc_feed_list ) ) { foreach( $wpsc_feed_list as $file ) { wp_cache_debug( "wpsc_feed_update: deleting feed: $file" ); prune_super_cache( $file, true ); prune_super_cache( dirname( $file ) . '/meta-' . basename( $file ), true ); } } }