Server : nginx/1.20.1 System : Linux ccpf-production-2021 5.4.0-148-generic #165-Ubuntu SMP Tue Apr 18 08:53:12 UTC 2023 x86_64 User : forge ( 1000) PHP Version : 7.4.21 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /home/forge/gcc-ccpf.com/wp-content/plugins/widget-options/includes/ |
<?php
/**
* Shortcodes Handler
*
* @copyright Copyright (c) 2016, Jeffrey Carandang
* @since 4.0
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) exit;
//remove widgetopts_pages transient when new page created
if( !function_exists( 'widgetopts_delete_transient_pages' ) ){
add_action( 'transition_post_status', 'widgetopts_delete_transient_pages', 10, 3 );
function widgetopts_delete_transient_pages( $new_status, $old_status, $post ){
global $widgetopts_types;
if ( 'page' == $post->post_type ){
delete_option( 'widgetopts_global_all_pages' );
}
if( 'publish' == $new_status && 'publish' != $old_status ){
if( is_array( $widgetopts_types ) && !empty( $widgetopts_types ) && !in_array( $post->post_type, $widgetopts_types ) ){
delete_option( 'widgetopts_global_types' );
}
}
}
}
//remove widgetopts_categories transient when new category created
if( !function_exists( 'widgetopts_delete_transient_terms' ) ){
add_action( 'create_term', 'widgetopts_delete_transient_terms', 10, 3 );
add_action( 'edit_term', 'widgetopts_delete_transient_terms', 10, 3 );
add_action( 'delete_term', 'widgetopts_delete_transient_terms', 10, 3 );
function widgetopts_delete_transient_terms( $term_id, $tt_id, $taxonomy ){
global $widgetopts_taxonomies;
delete_transient( 'widgetopts_taxonomy_' . $taxonomy );
if( is_array( $widgetopts_taxonomies ) && !empty( $widgetopts_taxonomies ) && !in_array( $taxonomy, $widgetopts_taxonomies ) ){
delete_option( 'widgetopts_global_taxonomies' );
}
if( $taxonomy == 'category' ){
delete_option( 'widgetopts_global_categories' );
}
}
}
?>