- Implements exclusion of duplicate posts from ALC

This commit is contained in:
Vlad
2016-05-03 20:34:46 -04:00
parent 84e9ecef29
commit 396ab50fa0
7 changed files with 98 additions and 36 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace MailPoet\Models;
if(!defined('ABSPATH')) exit;
class NewsletterPost extends Model {
public static $_table = MP_NEWSLETTER_POSTS_TABLE;
function __construct() {
parent::__construct();
}
}