This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<details><summary>System Status Report</summary> | |
``` | |
### WordPress Environment ### | |
WordPress address (URL): [Redacted] | |
Site address (URL): [Redacted] | |
WC Version: 9.9.5 | |
Legacy REST API Package Version: The Legacy REST API plugin is not installed on this site. | |
Action Scheduler Version: ✔ 3.9.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[23-Jun-2025 07:32:16 UTC] Array | |
( | |
[switch_themes] => 1 | |
[edit_themes] => 1 | |
[activate_plugins] => 1 | |
[edit_plugins] => 1 | |
[edit_users] => 1 | |
[edit_files] => 1 | |
[manage_options] => 1 | |
[moderate_comments] => 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
mysql: | |
image: mysql:latest | |
container_name: dev_mysql | |
restart: always | |
ports: | |
# <Port exposed> : < MySQL Port running inside container> | |
- "3306:3306" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.photo { | |
width: 400px; | |
height: 350px; | |
overflow: hidden; | |
} | |
img { | |
transition: transform 0.25s; | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action('init', 'init_remove_support',100); | |
function init_remove_support(){ | |
$post_type = 'videok'; | |
remove_post_type_support( $post_type, 'editor'); | |
} |