| Server IP : 173.209.174.21 / Your IP : 216.73.216.89 Web Server : Apache/2.4.58 (Ubuntu) System : Linux wcfs-server 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : nodor ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/thelittlebigshow/wp-content/plugins/robo-gallery/includes/ |
Upload File : |
<?php
/*
* Robo Gallery By Robosoft
* Contact: https://robosoft.co/robogallery/
* Copyright (c) 2014-2019, Robosoft. All rights reserved.
*/
if ( ! defined( 'WPINC' ) ) exit;
function robo_gallery_save_gallery( $post_id, $post, $update ) {
$post_type = get_post_type($post_id);
if ( ROBO_GALLERY_TYPE_POST != $post_type ) return;
/* delete db_cache */
delete_transient( ROBO_GALLERY_PREFIX.'cache_id'. $post_id );
/* delete cache id */
delete_post_meta( $post_id, ROBO_GALLERY_PREFIX.'cache_id' );
/* set new cache id */
add_post_meta( $post_id, ROBO_GALLERY_PREFIX.'cache_id', uniqid() );
}
add_action( 'save_post', 'robo_gallery_save_gallery', 10, 3 );
function robo_gallery_new_gallery( $post_id, $post, $update ) {
if( wp_is_post_revision( $post_id ) ) return;
$post_type = get_post_type($post_id);
if ( ROBO_GALLERY_TYPE_POST != $post_type ) return;
add_post_meta($post_id, ROBO_GALLERY_PREFIX.'cache_id', uniqid() );
}
add_action( 'wp_insert_post', 'robo_gallery_new_gallery', 10, 3 );