开发者 |
seanconklin
randywsandberg |
---|---|
更新时间 | 2024年10月31日 01:27 |
捐献地址: | 去捐款 |
PHP版本: | 7.4 及以上 |
WordPress版本: | 6.7-RC2 |
版权: | GPLv2 (or later) |
Please call Benchmark Email at (800) 430-4095.
RSS campaigns send out a digest of blog posts on a schedule using your RSS feed URL. Further details can be found here: https://kb.benchmarkemail.com/how-do-i-create-an-rss-to-email-campaign/ Inside your WordPress Admin area, select Benchmark > Interface. Navigate to Emails > Create > RSS Email > Drag/Drop. Enter your WordPress URL, which is your website followed by /feed. You may wish to filter the posts by category or tag, for example: https://codedcommerce.com/category/marketing-tips/feed. You may also use category IDs and filter nagatively to exclude a comma-separated list of them, for example: https://codedcommerce.com/?cat=-52047&feed=rss2
Yes. The plugin does not directly use any form frameworks other than native Benchmark Email signup forms. As with most WordPress projects, you can bridge the two together with custom code. We've assembled an example based on Contact Form 7. Install the Code Snippets plugin, import the sample code file, edit the code snippet to change the list ID mappings within the code and tailor the form field names to match your form (or visa-versa), then enable the code snippet and test.
Yes. In v3.3 we've added new hooks you can use in your custom functions. The new hooks are:
add_filter( 'wpbme_post_title', function( $value, $post ) { return $value; }, 10, 2 );
add_filter( 'wpbme_post_content', function( $value, $post ) { return $value; }, 10, 2 );
add_filter( 'wpbme_email_type', function( $value, $post ) { return $value; }, 10, 2 );
add_filter( 'wpbme_email_html', function( $value, $post ) { return $value; }, 10, 2 );
DD
for the drop-down email editor and can be changed to Custom
when doing raw HTML.
www.
for consistency.wp-config.php
.#benchmark-email-lite
into URL so that after form submission it puts the user on the proper screen position to view the server response.sanitize_text_field()
function requiring v2.9.0.sanitize_email()
and sanitize_text_field()
functions on WordPress Codex.