Plugin info

Total downloads: 1,630
Active installs: 10
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 3/2/2019 (2549 days ago)
Added to WordPress: 10/2/2016 (9 years old)
Minimum WordPress version: 4.5
Tested up to WordPress version: 4.9.28
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 2549 days ago

20/100

Is Secure post with link abandoned?

Possibly abandoned (last update 2549 days ago).

Compatibility

Requires WordPress: 4.5
Tested up to: 4.9.28
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

BuddyPress Private Community
Rating 2.5/5 (2 reviews)Active installs 20
All-In-One Security (AIOS) – Security and Firewall
Rating 4.7/5 (1,677 reviews)Active installs 1,000,000
BBQ Firewall – Fast & Powerful Firewall Security
Rating 4.9/5 (154 reviews)Active installs 100,000
A2 Optimized WP – Turbocharge and secure your WordPress site
Rating 3.2/5 (42 reviews)Active installs 70,000
SecuPress with Simple SSL – Simple and Performant Security
Rating 4.1/5 (106 reviews)Active installs 40,000
BulletProof Security
Rating 4.8/5 (673 reviews)Active installs 30,000

Description

This plugin adds new status for posts (or pages/custom post types) called “Secured with link”. If you select this status, that specific post wouldn’t be accessible on its standard URL anymore, but you have to access it on URL with random token in it. This URL is displayed on post edit screen in administration.

Configuration

For now, there is no administration screen yet. To configure plugin, you can inject your changes to plugin configuration array from your theme or plugin. Just put this code into functions.php file in your theme:

add_filter( 'lumi.secure_post_with_link.config', function( $config ){
    $config[ 'allowed_post_types' ] = [ 'post', 'page' ];
    $config[ 'url_identifier' ] = 'sec';
    // ... Other $config variables
    return $config;
} );

Preferably, don’t include lines with attributes, which you don’t want to change.

These are attributes (with defaults), which you can change this way:

  • allowed_post_types ([ ‘post’ ]) List of post types, which should be affected by this plugin. Use array notation like: [ 'post', 'page', 'custom_type' ].

  • secured_meta_name (‘_secured_with_link_token’) Name of meta, which stores post token. You can change that in case of conflicts with themes or other plugins.

  • url_identifier (‘s’) Part of URL before token, which identifies secured posts.

  • token_length (4) Length of random token. With default generator, length is in bytes!

  • use_openssl (true) If plugin should use cryptographically secure random generator, or less-secure PHP functions. (See below)

  • assets_url (Defaults to [plugin URL]/assets) URL for static assets (like Javascripts), in case, you want to use your assets for some reason.

  • translations_dir (Defaults to [Plugin path]/lang) You can change path, where plugin looks for translation files. If you want to translate plugin, you should not use this setting, but create standard translation in wp-content/languages folder.

In case, you have changed any settings after plugin installation, deactivate and reactivate plugin, so all changes are correctly applied.

Compatibility

  • For now, you need to use WP URL Rewriting for plugin to work correctly
  • Plugin should work with PHP 5.4, but at least PHP 5.6 is highly recommended. I’m sorry, but I won’t support older, insecure and slow versions of PHP.
  • By default, plugin uses OpenSSL library to generate cryptographically secure random tokens. If your hosting provider don’t have OpenSSL set up, you can use configuration variable: $config[ 'use_openssl' ] = false to use less-secure method of token generating. This should still be secure enough for most use cases.

Planned features

  • Administration page
  • Regenerate token
  • Role management – users with privileges should be able to access post without token

Developers

Plugin is also hosted on Github.

Installation

Unzip files to secure-post-with-link folder in your wp-plugins.

Frequently Asked Questions

No FAQ available

Review feed

No reviews available

Screenshots

  1. URL with token

    URL with token

  2. Status setting

    Status setting

Changelog

1.2.3

1.2.2

  • Fix plugin behavior for internal Page post type

1.2.1

  • Fix release process

1.2

  • Tested with WP 4.9
  • Fix comments posting on secured posts
  • Fix few admin links to secured pages

1.1

  • Compatibility fix with WP Super Cache (secured posts were not cleared from cache on updates)

1.0

  • Initial version with base functionality