at path:
ROOT
/
wp-content
/
themes
/
wen-travel
/
inc
/
tgm.php
run:
R
W
Run
admin
DIR
2026-01-02 17:49:32
R
W
Run
customizer
DIR
2026-01-02 17:49:32
R
W
Run
class-tgm-plugin-activation.php
120.17 KB
2021-07-16 01:30:08
R
W
Run
Delete
Rename
color-scheme.php
3.33 KB
2022-08-25 09:22:26
R
W
Run
Delete
Rename
custom-header.php
10.27 KB
2024-12-09 16:43:16
R
W
Run
Delete
Rename
icon-functions.php
7.26 KB
2025-07-14 11:35:36
R
W
Run
Delete
Rename
jetpack.php
1 KB
2021-07-16 01:30:08
R
W
Run
Delete
Rename
template-functions.php
14.34 KB
2021-12-10 10:32:34
R
W
Run
Delete
Rename
template-tags.php
16.72 KB
2021-07-16 01:30:08
R
W
Run
Delete
Rename
tgm.php
918 By
2021-07-16 01:30:08
R
W
Run
Delete
Rename
widget-social-icons.php
4.22 KB
2021-07-16 01:30:08
R
W
Run
Delete
Rename
wptt-webfont-loader.php
16.8 KB
2022-08-25 09:22:26
R
W
Run
Delete
Rename
error_log
up
📄
tgm.php
Save
<?php /** * TGM implementation. * * @package WEN_Travel */ /** * Load TGMPA */ require get_parent_theme_file_path( '/inc/class-tgm-plugin-activation.php' ); add_action( 'tgmpa_register', 'wen_travel_register_recommended_plugins' ); /** * Register recommended plugins. * * @since 1.0.0 */ function wen_travel_register_recommended_plugins() { $plugins = array( array( 'name' => esc_html__( 'WP Travel', 'wen-travel' ), 'slug' => 'wp-travel', ), array( 'name' => esc_html__( 'Contact Form 7', 'wen-travel' ), 'slug' => 'contact-form-7', ), array( 'name' => esc_html__( 'WEN Featured Image', 'wen-travel' ), 'slug' => 'wen-featured-image', ), array( 'name' => esc_html__( 'Catch Themes Demo Import', 'wen-travel' ), 'slug' => 'catch-themes-demo-import', ), ); // TGM configurations. $config = array( ); // Register now. tgmpa( $plugins, $config ); }