| Server IP : 172.67.201.108 / Your IP : 216.73.216.114 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/home2/mommybites/wp-content/plugins/related-posts-for-wp/classes/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
} // Exit if accessed directly
abstract class RP4WP_Constants {
// Link title
const LINK_PT = 'rp4wp_link';
// Linked meta
const PM_PT_PARENT = 'rp4wp_pt_parent';
const PM_PARENT = 'rp4wp_parent';
const PM_CHILD = 'rp4wp_child';
// Post meta
const PM_POST_AUTO_LINKED = 'rp4wp_auto_linked'; // Posts that have automatically linked posts
// Options
const OPTION_DO_INSTALL = 'rp4wp_do_install';
const OPTION_IS_INSTALLING = 'rp4wp_is_installing';
// Nag options
const OPTION_INSTALL_DATE = 'rp4wp_install_date';
const OPTION_ADMIN_NOTICE_KEY = 'rp4wp_hide_nag';
// Nonce
const NONCE_INSTALL = 'rp4wp-install-secret';
const NONCE_AJAX = 'rp4wp-ajax-nonce-omgrandomword';
}