Skip to content

Commit

Permalink
Merge branch 'development' into feat/custom-content
Browse files Browse the repository at this point in the history
  • Loading branch information
Soare-Robert-Daniel committed Jul 12, 2024
2 parents 26fb9ce + f488f39 commit 23de9ce
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tweet-old-post.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,13 @@ function run_rop() {

define( 'ROP_LITE_VERSION', '9.0.31' );
define( 'ROP_LITE_BASE_FILE', __FILE__ );
$debug = false;
if ( function_exists( 'wp_get_environment_type' ) ) {
if ( wp_get_environment_type() !== 'production' ) {
$debug = true;
}
}
define( 'ROP_DEBUG', $debug );
define( 'ROP_LITE_PATH', plugin_dir_path( __FILE__ ) );
define( 'ROP_PRO_PATH', WP_PLUGIN_DIR . '/tweet-old-post-pro/' );
define( 'ROP_PATH', plugin_dir_path( __FILE__ ) );
Expand Down

0 comments on commit 23de9ce

Please sign in to comment.