mirror of
https://gh.wpcy.net/https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2026-04-24 05:09:10 +08:00
16 lines
293 B
PHP
16 lines
293 B
PHP
<?php
|
|
|
|
/*
|
|
* Plugin Name: The Events Calendar
|
|
* Plugin URI: https://github.com/szepeviktor/wordpress-website-lifecycle
|
|
*/
|
|
|
|
// Load tribe-common translations
|
|
add_action(
|
|
'init',
|
|
function () {
|
|
load_plugin_textdomain('tribe-common', false, WP_LANG_DIR);
|
|
},
|
|
10,
|
|
0
|
|
);
|