Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
insepet /
wp-content /
themes /
micron /
includes /
[ HOME SHELL ]
Name
Size
Permission
Action
blog
[ DIR ]
drwxr-xr-x
faq
[ DIR ]
drwxr-xr-x
page
[ DIR ]
drwxr-xr-x
portfolio
[ DIR ]
drwxr-xr-x
widgets
[ DIR ]
drwxr-xr-x
class-tgm-plugin-activation.ph...
73.33
KB
-rw-r--r--
custom-faq.php
4.82
KB
-rw-r--r--
custom-ninzio-slider.php
34
KB
-rw-r--r--
custom-portfolio.php
17.03
KB
-rw-r--r--
dynamic-scripts.php
4.42
KB
-rw-r--r--
dynamic-styles.php
66.45
KB
-rw-r--r--
multi-post-thumbnails.php
17.31
KB
-rw-r--r--
ninzio-slider.php
14.4
KB
-rw-r--r--
ninzio_vc.php
61.65
KB
-rw-r--r--
page-extended-options.php
24.47
KB
-rw-r--r--
post-extended-options.php
10.25
KB
-rw-r--r--
shortcodes.php
107.58
KB
-rw-r--r--
social-links.php
3.13
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : post-extended-options.php
<?php add_action("admin_init", "ninzio_add_post_meta_box"); function ninzio_add_post_meta_box(){ add_meta_box( "ninzio-post-format-options", __("Post Format Options", TEMPNAME), "render_ninzio_post_options", "post", "normal", "high" ); } function render_ninzio_post_options($post) { $values = get_post_custom( $post->ID ); $ninzio_post_audio_mp3 = isset( $values['ninzio_post_audio_mp3'] ) ? esc_url( $values["ninzio_post_audio_mp3"][0] ) : ""; $ninzio_post_audio_ogg = isset( $values['ninzio_post_audio_ogg'] ) ? esc_url( $values["ninzio_post_audio_ogg"][0] ) : ""; $ninzio_post_audio_embed = isset( $values['ninzio_post_audio_embed'] ) ? esc_attr( $values["ninzio_post_audio_embed"][0] ) : ""; $ninzio_post_video_mp4 = isset( $values['ninzio_post_video_mp4'] ) ? esc_url( $values["ninzio_post_video_mp4"][0] ) : ""; $ninzio_post_video_ogv = isset( $values['ninzio_post_video_ogv'] ) ? esc_url( $values["ninzio_post_video_ogv"][0] ) : ""; $ninzio_post_video_webm = isset( $values['ninzio_post_video_webm'] ) ? esc_url( $values["ninzio_post_video_webm"][0] ) : ""; $ninzio_post_video_embed = isset( $values['ninzio_post_video_embed'] ) ? esc_attr( $values["ninzio_post_video_embed"][0] ) : ""; $ninzio_post_video_poster = isset( $values['ninzio_post_video_poster'] ) ? esc_attr( $values["ninzio_post_video_poster"][0] ) : ""; $ninzio_post_link_url = isset( $values['ninzio_post_link_url'] ) ? esc_url( $values["ninzio_post_link_url"][0] ) : ""; $ninzio_post_image_url = isset( $values['ninzio_post_image_url'] ) ? esc_url( $values["ninzio_post_image_url"][0] ) : ""; $ninzio_post_image_description = isset( $values['ninzio_post_image_description'] ) ? esc_attr( $values["ninzio_post_image_description"][0] ) : ""; $ninzio_post_status_author = isset( $values['ninzio_post_status_author'] ) ? esc_attr( $values["ninzio_post_status_author"][0] ) : ""; $ninzio_post_quote_author = isset( $values['ninzio_post_quote_author'] ) ? esc_attr( $values["ninzio_post_quote_author"][0] ) : ""; $ninzio_post_featured_media = isset( $values['ninzio_post_featured_media'] ) ? esc_attr( $values["ninzio_post_featured_media"][0] ) : "yes"; wp_nonce_field( 'ninzio_post_meta_nonce', 'ninzio_post_meta_nonce' ); ?> <div id="ninzio-post-featured-media"> <label for="post-featured-media"> <input type="checkbox" id="post-featured-media" name="ninzio_post_featured_media" value="no" <?php checked( $ninzio_post_featured_media, "no" ); ?> /> <?php echo __(' - Disable Featured Media in this post (Featured Image / Featured Gallery / Featured Video)', TEMPNAME); ?> </label> </div> <div id="ninzio-post-format-audio" class="ninzio-post-option"> <h4><?php echo __("Audio post format options", TEMPNAME); ?></h4> <div> <label for="ninzio_post_audio_mp3"><?php echo __('Enter MP3 audio file link here:', TEMPNAME); ?></label> <input name="ninzio_post_audio_mp3" id="post-audio-mp3" type="text" value="<?php echo $ninzio_post_audio_mp3;?>"/> </div> <div> <label for="ninzio_post_audio_ogg"><?php echo __('Enter OGG audio file link here:', TEMPNAME); ?></label> <input name="ninzio_post_audio_ogg" id="post-audio-ogg" type="text" value="<?php echo $ninzio_post_audio_ogg;?>"/> </div> <div> <label for="ninzio_post_audio_embed"><?php echo __('Embed audio here:', TEMPNAME); ?></label> <textarea name="ninzio_post_audio_embed" id="post-audio-embed"><?php echo $ninzio_post_audio_embed;?></textarea> </div> </div> <div id="ninzio-post-format-video" class="ninzio-post-option"> <h4><?php echo __("Video post format options", TEMPNAME); ?></h4> <div> <label for="ninzio_post_video_mp4"><?php echo __('Enter MP4 video file link here:', TEMPNAME); ?></label> <input name="ninzio_post_video_mp4" id="post-video-mp3" type="text" value="<?php echo $ninzio_post_video_mp4;?>"/> </div> <div> <label for="ninzio_post_video_ogv"><?php echo __('Enter OGV video file link here:', TEMPNAME); ?></label> <input name="ninzio_post_video_ogv" id="post-video-ogv" type="text" value="<?php echo $ninzio_post_video_ogv;?>"/> </div> <div> <label for="ninzio_post_video_webm"><?php echo __('Enter WEBM video file link here:', TEMPNAME); ?></label> <input name="ninzio_post_video_webm" id="post-video-webm" type="text" value="<?php echo $ninzio_post_video_webm;?>"/> </div> <br> <div> <div class="ninzio-upload"> <input name="ninzio_post_video_poster" id="post-video-poster" type="hidden" class="ninzio-upload-path" value="<?php echo $ninzio_post_video_poster;?>"/> <input class="ninzio-button-upload button" type="button" value="<?php echo __('Upload video poster image', TEMPNAME) ?>" /> <input class="ninzio-button-remove button" type="button" value="<?php echo __('Remove video poster image', TEMPNAME) ?>" /> <img src='<?php echo $ninzio_post_video_poster; ?>' class='ninzio-preview-upload'/> </div> </div> <div> <label for="ninzio_post_video_embed"><?php echo __('Embed video here:', TEMPNAME); ?></label> <textarea name="ninzio_post_video_embed" id="post-video-embed"><?php echo $ninzio_post_video_embed;?></textarea> </div> </div> <div id="ninzio-post-format-gallery" class="ninzio-post-option"> <h4><?php echo __("Gallery post format options", TEMPNAME); ?></h4> <div><?php echo __('Use 2nd/3rd ... Featured Images (in the right sidebar, right after main featured image) to upload images for the gallery post format', TEMPNAME); ?></div> </div> <div id="ninzio-post-format-link" class="ninzio-post-option"> <h4><?php echo __("Link post format options", TEMPNAME); ?></h4> <div> <label for="ninzio_post_link_url"><?php echo __('Enter link URL here:', TEMPNAME); ?></label> <input name="ninzio_post_link_url" id="post-link-url" type="text" value="<?php echo $ninzio_post_link_url;?>"/> </div> </div> <div id="ninzio-post-format-image" class="ninzio-post-option"> <h4><?php echo __("Image post format options", TEMPNAME); ?></h4> <div> <label for="ninzio_post_image_url"><?php echo __('Enter image URL here:', TEMPNAME); ?></label> <input name="ninzio_post_image_url" id="post-image-url" type="text" value="<?php echo $ninzio_post_image_url;?>"/> </div> <div> <label for="ninzio_post_image_description"><?php echo __('Enter image DESCRIPTION here:', TEMPNAME); ?></label> <input name="ninzio_post_image_description" id="post-image-description" type="text" value="<?php echo $ninzio_post_image_description;?>"/> </div> </div> <div id="ninzio-post-format-status" class="ninzio-post-option"> <h4><?php echo __("Status post format options", TEMPNAME); ?></h4> <div> <label for="ninzio_post_status_author"><?php echo __('Enter status author name here:', TEMPNAME); ?></label> <input name="ninzio_post_status_author" id="post-status-author" type="text" value="<?php echo $ninzio_post_status_author;?>"/> </div> </div> <div id="ninzio-post-format-quote" class="ninzio-post-option"> <h4><?php echo __("Quote post format options", TEMPNAME); ?></h4> <div> <label for="ninzio_post_quote_author"><?php echo __('Enter quote author name here:', TEMPNAME); ?></label> <input name="ninzio_post_quote_author" id="post-quote-author" type="text" value="<?php echo $ninzio_post_quote_author;?>"/> </div> </div> <?php } add_action( 'save_post', 'save_ninzio_post_format_options' ); function save_ninzio_post_format_options( $post_id ) { if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return; if( !isset( $_POST['ninzio_post_meta_nonce'] ) || !wp_verify_nonce( $_POST['ninzio_post_meta_nonce'], 'ninzio_post_meta_nonce' ) ) return; if( !current_user_can( 'edit_post' ) ) return; if( isset( $_POST['ninzio_post_audio_mp3'] ) ){update_post_meta($post_id, "ninzio_post_audio_mp3",$_POST["ninzio_post_audio_mp3"]);} if( isset( $_POST['ninzio_post_audio_ogg'] ) ){update_post_meta($post_id, "ninzio_post_audio_ogg",$_POST["ninzio_post_audio_ogg"]);} if( isset( $_POST['ninzio_post_audio_embed'] ) ){update_post_meta($post_id, "ninzio_post_audio_embed",$_POST["ninzio_post_audio_embed"]);} if( isset( $_POST['ninzio_post_video_mp4'] ) ){update_post_meta($post_id, "ninzio_post_video_mp4",$_POST["ninzio_post_video_mp4"]);} if( isset( $_POST['ninzio_post_video_ogv'] ) ){update_post_meta($post_id, "ninzio_post_video_ogv",$_POST["ninzio_post_video_ogv"]);} if( isset( $_POST['ninzio_post_video_webm'] ) ){update_post_meta($post_id, "ninzio_post_video_webm",$_POST["ninzio_post_video_webm"]);} if( isset( $_POST['ninzio_post_video_embed'] ) ){update_post_meta($post_id, "ninzio_post_video_embed",$_POST["ninzio_post_video_embed"]);} if( isset( $_POST['ninzio_post_video_poster'] ) ){update_post_meta($post_id, "ninzio_post_video_poster",$_POST["ninzio_post_video_poster"]);} if( isset( $_POST['ninzio_post_link_url'] ) ){update_post_meta($post_id, "ninzio_post_link_url",$_POST["ninzio_post_link_url"]);} if( isset( $_POST['ninzio_post_image_url'] ) ){update_post_meta($post_id, "ninzio_post_image_url",$_POST["ninzio_post_image_url"]);} if( isset( $_POST['ninzio_post_image_description'] ) ){update_post_meta($post_id, "ninzio_post_image_description",$_POST["ninzio_post_image_description"]);} if( isset( $_POST['ninzio_post_status_author'] ) ){update_post_meta($post_id, "ninzio_post_status_author",$_POST["ninzio_post_status_author"]);} if( isset( $_POST['ninzio_post_quote_author'] ) ){update_post_meta($post_id, "ninzio_post_quote_author",$_POST["ninzio_post_quote_author"]);} $ninzio_post_featured_media_checked = ( isset( $_POST['ninzio_post_featured_media'] ) ) ? "no" : "yes"; update_post_meta($post_id, "ninzio_post_featured_media", $ninzio_post_featured_media_checked); } ?>
Close