Content Mask
Read More & View Demos Here Embed Any Content†‡ Into Your WordPress Website Content Mask allows you to embed any external content onto your own WordPress Pages, Posts, and Custom Post Types. The end result is fairly similar to setting up a Domain Mask, but the content is embedded into the front end of your website and is fully contained inside your WordPress permalink ecosystem. Example: If you built a landing page on landing-page-builder.com/your-landing-page/, you can simply create a new Page on your website at your-site.com/landing-page/ and paste in the URL of your landing page. The Content Mask plugin will then download and cache of copy of your landing page directly on your website, so any visitors that come to your-site.com/landing-page/ will see the landing page you built. This allows you to keep all of your links integrated into your WordPress Website. † Do not use Content Mask to embed any content that you do not own or do not otherwise have license to share, embed, frame, or distribute. Simple 2-Step UI With a simple 2-Step UI, you can embed any external content into your website without any complicated URL Forwarding, DNS Records, or .htaccess rules to mess with. Just enable the Content Mask on any Page, Post, or Custom Post type by clicking on the check mark. Then put in the URL that contains the content you want to embed. It’s that simple! Powerful Embedding and Redirect Options Using the Download method (default) will fetch the content from the Content Mask URL, cache it on your website, and replace the current page request with that content. By default, this cache lasts 4 hours – but it can be changed anywhere from “Never Cache” all the way up to “Cache for 4 Weeks”. Caching prevents the need for additional requests that slow down your site. Using the Iframe method will replace the current page request with a full width/height, frameless iframe containing the host URL. This method is ideal if the URL you want to embed won’t serve scripts, styles, or images to other URLs or IP Addresses. If you use the Download Method, and links or images look broken, you can try the Iframe method instead. Using the Redirect (301) method will simply redirect the visitor to the host URL. Simple Integrated Vistor Tracking In the Content Mask admin panel, you can enable tracking for Content Masked pages. This will allow you to see how many visitors are viewing these links. This is ideal for when you need to track acquisition, such as on a Landing Page. [Views] shows how many times that Content Mask page has been viewed by anybody (even logged in users) [Non-User] shows how many times it’s been viewed by visitors that are not logged in to the website. [Unique] shows how many times it’s been viewed by unique IP addresses. Note: IP addresses are one-way hashed and are not identifiable in any way. Creating a Content Masked Page Using the Content Mask Admin Panel Notes: Do NOT use Content Mask on any content you aren’t explicitly authorized to share or use. Please confirm you’re allowed to utilize and embed the content before embedding any particular URL. Content embedded using the Download method is cached using the WordPress Transients API for 4 hours by default. If the content on the external URL is updated and you would like a fresh copy, you may just click the “Update” button on the Page, Post, or Custom Post Type to refresh the transient, or click the “Refresh” link in the Content Mask Admin panel. You may also change the cache expiration timer per page anywhere from “Never” to “4 weeks”. You may use the Transients Manager plugin to manage transients stored with the Download method. All Content Mask related transients contain the prefix “content_mask-” plus a stripped version of the Content Mask URL, such as “content_mask-httpxhynkcom”. ‡ Your site may be prevented from processing page requests for any reason; Reasons include, but are not limited to: masking unauthorized content, at the request of the masked URL site owner, masking hateful content, masking illegal content, circumventing IP bans, etc. A dual one-way encrypted hash of your masking URL may be used to check for infraction. No identifying information will be used for this check, and no information is saved other than as a transient to prevent unnecessary duplicate checks per site Read More About Content Mask
Top keywords
- content32×4.28%
- mask14×1.87%
- page14×1.87%
- content mask13×1.74%
- url12×1.60%
- embed8×1.07%
- method8×1.07%
- website8×1.07%
- cache6×0.80%
- download5×0.67%
- landing5×0.67%
- landing page5×0.67%
Videojs HTML5 Player
Video.js HTML5 Player is a user-friendly plugin that supports video playback on desktop and mobile devices. It makes super easy for you to embed both self-hosted video files or video files that are externally hosted using Video.js library. Video.js HTML5 Player Add-ons Disable Right Click Themes Video.js HTML5 Player Features Embed MP4 video files into a post/page or anywhere on your WordPress site Embed responsive videos for a better user experience while viewing from a mobile device Embed HTML5 videos which are compatible with modern browsers Embed videos with poster images Embed videos using videojs player Automatically play a video when the page is rendered if the device and browser support it Embed videos uploaded to your WordPress media library using direct links in the shortcode Clean and sleek player with no watermark fallbacks for other HTML5-supported filetypes (WebM, Ogv) HTTP streaming How to Use Video.js HTML5 Player In order to embed a video create a new post/page and use the following shortcode: [videojs_video url="https://example.com/wp-content/uploads/videos/myvid.mp4"] Here, “url” is the location of the MP4 video source file (H.264 encoded). You need to replace the sample URL with the actual URL of the video file. Video Shortcode Options The following options are supported in the shortcode. WebM You can specify a WebM video file in addition to the source MP4 video file. This parameter is optional. [videojs_video url="https://example.com/wp-content/uploads/videos/myvid.mp4" webm="https://example.com/wp-content/uploads/videos/myvid.webm"] Ogv You can specify a Ogv video file in addition to the source MP4 & WebM video files. This parameter is optional. [videojs_video url="https://example.com/wp-content/uploads/videos/myvid.mp4" webm="https://example.com/wp-content/uploads/videos/myvid.webm" ogv="https://example.com/wp-content/uploads/videos/myvid.ogv"] Width Defines the width of the video file (Height is automatically calculated). This option is not required unless you want to limit the maximum width of the video. [videojs_video url="https://example.com/wp-content/uploads/videos/myvid.mp4" width="480"] Preload Specifies if and how the video should be loaded when the page loads. Defaults to “auto” (the video should be loaded entirely when the page loads). Other options: “metadata” – only metadata should be loaded when the page loads “none” – the video should not be loaded when the page loads [videojs_video url=”https://example.com/wp-content/uploads/videos/myvid.mp4″ preload=”metadata”] Controls Specifies that video controls should be displayed. Defaults to “true”. In order to hide controls set this parameter to “false”. [videojs_video url="https://example.com/wp-content/uploads/videos/myvid.mp4" controls="false"] When you disable controls users will not be able to interact with your videos. So It is recommended that you enable autoplay for a video with no controls. Autoplay Causes the video file to automatically play when the page loads. [videojs_video url="https://example.com/wp-content/uploads/videos/myvid.mp4" autoplay="true"] Poster Defines image to show as placeholder before the video plays. [videojs_video url="https://example.com/wp-content/uploads/videos/myvid.mp4" poster="https://example.com/wp-content/uploads/poster.jpg"] Loop Causes the video file to loop to beginning when finished and automatically continue playing. [videojs_video url="https://example.com/wp-content/uploads/videos/myvid.mp4" loop="true"] Muted Specifies that the audio output of the video should be muted. [videojs_video url="https://example.com/wp-content/uploads/videos/myvid.mp4" muted="true"] Video.js HTTP Streaming The plugin supports the m3u8 file format that can be used for Video.js HTTP Streaming. It allows you to play HLS, DASH, and other HTTP streaming protocols with Video.js, even where they are not natively supported. [videojs_video url="https://example.com/wp-content/uploads/videos/myvid.m3u8"] For detailed documentation please visit the Videojs HTML5 Player plugin page