↑ Return to F90 Youtube

F92 Video Post Type

by
George Morgan
My articles
Follow on:

Page no: F92

 

 

 

Overview

The plugin “author post type” contains different functionalities for promoting authors

 

 

3 Different Post Types

 

  1. The post type “book”
  2. The post type “audio”
  3. The post type “video”
Author Post Type Backend

Functionalities in Front-End

In the front-end videos should have the same behaviours as posts/pages.

 

 

Frontend:

  • Breadcrumb

 

get_breadcrumb() and others

  • Categories Archives

New files were created

  • New archive based on cats and video

 

Function:

New files were created

Screen available when go live

  • Prev/next video

 

Function:

get_quick_links()

Screen available when go live

  • Avatars

Function:

fa_avatars()

  • Related posts

Function:

show_yarpp_posts()

Screen available when go live

  • Comments

 

Function:

get_comments_template()

Functionalities in Back-End

Video Post Overview

Option1: All Content

 

Aggregate content over all post types.

Problem: High effort to implement

 

 

Option2: Post Type 

New attribute in post type

that identifies it is a video or audio or text.

 

Advantage: Reuse all existing functionalities of posts

Option3: Enable all functionalities for videos and audios

Enable functionality that exists for posts also for videos and audios.

One row per functionality + Screenshot

 

Our plugins

No custom plugin Like tag groups

 

We use option3.

Status

  • View Status   OK

 

Function:

create_posttype()

 

Attributes

–> Enable all attributes like

  • Featured image
  • Author
  • HTML Type

 

Function:

create_posttype()

 

 

  • Quickedit – Enable

 

Plugin:

pa_quick_edit

 

  • Related posts / videos

 

Plugin:

Yarpp

No screen available

  • Excerpt

 

Function:

create_posttype()

  • Auto tinytable

 

Plugin:

Auto tiny table

  • Revisions (versions)

 

Function:

create_posttype()

 

It is essentially an override of the post functionality made for typical attributes of books, videos and audios.

The plugin is integrated in the plugin “author pages”, that provides a GUI for the visualizing the author. This includes a GUI that links to viewing books, audios and videos and additional attributes, like the bio, rating or keywords.

 

 

See more for F9x Youtube