Banner for Simple Video Embedder
Adds a widget to the posting screen that makes posting videos a cinch. Wordpress Tutorial
Noted That:
  • To install correctly this simple-video-embedder.zip .
  • Fisrt Download the simple-video-embedder.zip to your computer
  • Extract/Open simple-video-embedder.zip to Your Computer.
  • Then, Find readme.txt file inside simple-video-embedder.zip and Open readme.txt .
  • Now, Read the Requirements of this plugin. Which Wordpress Version and PHP Version are required to run this Plugin in Your Wordpress Site.
  • Then, Follow the Tips Below.
Start the Tips:

Step-1 : Download " simple-video-embedder.zip " to Your Local Computer.

Step-2 : Then, Login to your " yourdomain.com/wp-admin " Dashboard.

Login to Wordpress Simple Video Embedder

Step-3 : Then, Click on " Plugins " + " Add New " from left Side Menu of Dashboard.

Go to Plugin Install Simple Video Embedder

Step-4 : Now, Click on " Upload Plugin " button.

Click Upload Button Simple Video Embedder

Step-5 : Now, Browse " simple-video-embedder.zip " Downloaded plugin from your computer, Where you downloaded " simple-video-embedder.zip " According to Step – 1 Above then, click on " Install Now "

Upload Plugin Simple Video Embedder

Step-6 : Now, Click on " Active Plugin "

Activate Simple Video Embedder

Step-7 : Then, See left Side Menu. " Simple Video Embedder " folder is added on left Side Menu. Now, Click on " Simple Video Embedder " folder.

Noted that: If you do not see " Simple Video Embedder " folder on left Side Menu then, see at left Side Menu " Settings " or " Tools ".

Step-8 : Now you configure yourself oR Watch video tutorial below about Simple Video Embedder Configurations and Settings or How to work " Simple Video Embedder " in your WordPress site.

oR

After Activated Plugin According to Step-6 then,

  1. Go to " Plugins " + " Installed Plugin " from Wordpress Admin Panel Leftside Menu.
  2. or Direct go to: https://yourdomain/wp-admin/plugins.php
  3. Then, Find " Simple Video Embedder " Activated Plugin from Plugin List.
  4. Then, Click on " Settings " from Plugin that is Simple Video Embedder
  5. Now, Edit/Add/Config the setting and Click on " Save Changes " button,
WP Plugin Setting



Guide
  1. Upload the plugin files to your wp-plugins/ folder.
  2. Go the plugin management page and activate the plugin.
  3. Make the appropriate changes to your theme to show the videos (details below).
  4. Go to Settings > Video Options to configure default values.

The Simple Video Embedder plugin also works with self hosted FLV (Flash) or MP4 (Quicktime) videos. If you wish to use the Simple Video embedder with FLV or MP4 video, follow the instructions below:

  1. Download the JW FLV Media Player found at the LongTail Video website and extract the files it contains. There should be a file called swfobject.js and player.swf .
  2. Using an FTP client to access your host web server, upload all extracted files and their containing folder to the wp-content folder of WordPress.
  3. In the WordPress admin, go to Settings > Video Options and set “JW Player files location” to the absolute web path of the folder you just uploaded. For example, /wp-content/mediaplayer/ .

In order to show the videos, the p75GetVideo() function needs to be inserted somewhere in the loop of your theme. The function has the following prototype:


string p75GetVideo(int $post_id)

This function returns the embed code of the video for the post with ID $post_id . Note that it does not print out the embed code but returns it as a string that you must echo . There is also a function that checks whether there is a video for some post.


bool p75HasVideo(int $post_id)

This function returns true if the post with ID $post_id has a video and false otherwise. I suggest you use p75HasVideo() to check for a video, and only get the video with p75GetVideo() if it returns true.

Something similar to this should go in the main loop of your theme:


if ( p75HasVideo($post->
ID) ) { echo p75GetVideo($post->
ID);
}

Name