https://github.com/PressForward/pressforward
Raw File
Tip revision: 438629d15ed9706ebcddebfdd2eca2c39ed49947 authored by Boone B Gorges on 23 February 2023, 18:52:05 UTC
Fix strpos() logic in PF_Readability::process_in_oembeds().
Tip revision: 438629d
constants.php
<?php
/**
 * Plugin constants.
 *
 * @package PressForward
 */

define( 'PF_SLUG', 'pf' );
define( 'PF_TITLE', 'PressForward' );
define( 'PF_MENU_SLUG', PF_SLUG . '-menu' );
define( 'PF_NOM_EDITOR', 'edit.php?post_type=nomination' );
define( 'PF_NOM_POSTER', 'post-new.php?post_type=nomination' );
define( 'PF_ROOT', __DIR__ );
define( 'PF_FILE_PATH', PF_ROOT . '/pressforward.php' );
define( 'PF_URL', plugins_url( '/', __FILE__ ) );
define( 'PF_VERSION', '5.3.1' );
back to top