WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: tp-education (Used by 130 domains)

TP Education

πŸ‘€ themepalace πŸ“¦ v4.6 πŸ”— Plugin Homepage

A plugin to add custom post type ( Events, Courses, Classes, Excursions, Team, Testimonial, Affiliation ) and it’s required meta fields for educational sites. This plugin is dedicated for educational themes.

Frontend Submission

TP Eduacation allows you to like post from frontend and view the no of likes for that particular post.

Customization and Flexibility

TP Education plugin is highly flexible and customizable. This Plugin provides hooks that makes very easy for you to customize the output format. You just need to update design with css.

Template Overwrite

* Create a folder named "tp-education" and do all the overwrites inside the folder as instructed below.
* Archive Pages
    - you can overwrite all archive pages for post types available in this plugin. ie: tp-archive-class.php
* Search Page
    - you can overwrite search page for post types available in this plugin by tp-archive-search.php
* Single Pages
- you can overwrite all single pages for post types available in this plugin. ie: tp-single-class.php

Shortcodes

= Defaults Atts :- =
* category = ”,
* no_of_posts = 2,
* post_ids = ”, ( should be seperated by β€˜,’. ie: 15, 27 )
* column = 2 ( max num value 4 )

Class shortcode:

[TP_EDUCATION_CLASS] OR [TP_EDUCATION_CLASS category="cat-slug" no_of_posts="2" post_ids="217, 115" column="2"]

Event shortcode:

[TP_EDUCATION_EVENT] OR [TP_EDUCATION_EVENT category="cat-slug" no_of_posts="2" post_ids="217, 115" column="2"]

Course shortcode:

[TP_EDUCATION_COURSE] OR [TP_EDUCATION_COURSE category="cat-slug" no_of_posts="2" post_ids="217, 115" column="2"]

Team shortcode:

[TP_EDUCATION_TEAM] OR [TP_EDUCATION_TEAM category="cat-slug" no_of_posts="2" post_ids="217, 115" column="2"]

Excursion shortcode:

[TP_EDUCATION_EXCURSION] OR [TP_EDUCATION_EXCURSION category="cat-slug" no_of_posts="2" post_ids="217, 115" column="2"]

Affiliation shortcode:

[TP_EDUCATION_AFFILIATION] OR [TP_EDUCATION_AFFILIATION category="cat-slug" no_of_posts="2" post_ids="217, 115" column="2"]

Testimonial shortcode:

[TP_EDUCATION_TESTIMONIAL] OR [TP_EDUCATION_TESTIMONIAL no_of_posts="2" post_ids="217, 115" column="2"]

Search Tabs shortcode:

[TP_EDUCATION_SEARCH_TAB]

Functions to Call Meta Values

Check if the page loaded is TP Education territorial

is_tp_education();

Event Details

tp_event_date( $post_id = '' ); // Event Date
tp_event_start_time( $post_id = '' ); // Event Start Time
tp_event_end_time( $post_id = '' ); // Event End Time
tp_event_location( $post_id = '' ); // Event Location

Class Details

tp_class_cost( $post_id = '' ); // Class Cost
tp_class_period( $post_id = '' ); // Class Period
tp_class_size( $post_id = '' ); // Class Size
tp_class_age_group( $post_id = '' ); // Class Age Group

Excursion Details

tp_excursion_start_date( $post_id = '' ); // Excursion Start Date
tp_excursion_end_date( $post_id = '' ); // Excursion End Date
tp_excursion_location( $post_id = '' ); // Excursion Location

Team Details

tp_team_designation( $post_id = '' ); // Team Designation
tp_team_email( $post_id = '' ); // Team Email
tp_team_phone( $post_id = '' ); // Team Phone
tp_team_skype( $post_id = '' ); // Team Skype
tp_team_website( $post_id = '' ); // Team Website
tp_team_courses( $post_id = '' ); // Team Courses
tp_team_social( $post_id = '' ); // Team Social

Testimonial Details

tp_testimonial_rating( $post_id = '' ); // Testimonail Rating
tp_testimonial_designation( $post_id = '' ); // Testimonail Designation

Affiliation Details

tp_affiliation_link( $post_id = '' ); // Affiliation Link

Course Details

tp_course_type( $post_id = '' ); // Course Type
tp_course_duration( $post_id = '' ); // Course Duration
tp_course_price( $post_id = '' ); // Course Price
tp_course_students( $post_id = '' ); // Course no of Students
tp_course_language( $post_id = '' ); // Course Language
tp_course_assessment( $post_id = '' ); // Course assessment
tp_course_skills( $post_id = '' ); // Course skills
tp_course_professor( $post_id = '' ); // Course Professor
tp_course_counselors( $post_id = '' ); // Course Counselors

Get Terms with Link

tp_education_get_terms( $taxonomy = '', $post_id = '' ); // Get Terms with link

Post Like Button

tp_education_like_button( $post_id = '' ); // Like Button ( this function only returns output. )

Post Meta

tp_education_posted_on(); // Post Meta

Functions to Return Meta Values

Event Details

get_tp_event_date( $post_id = '' ); // Event Date
get_tp_event_start_time( $post_id = '' ); // Event Start Time
get_tp_event_end_time( $post_id = '' ); // Event End Time
get_tp_event_location( $post_id = '' ); // Event Location

Class Details

get_tp_class_cost( $post_id = '' ); // Class Cost
get_tp_class_period( $post_id = '' ); // Class Period
get_tp_class_size( $post_id = '' ); // Class Size
get_tp_class_age_group( $post_id = '' ); // Class Age Group

Excursion Details

get_tp_excursion_start_date( $post_id = '' ); // Excursion Start Date
get_tp_excursion_end_date( $post_id = '' ); // Excursion End Date
get_tp_excursion_location( $post_id = '' ); // Excursion Location

Team Details

get_tp_team_designation( $post_id = '' ); // Team Designation
get_tp_team_email( $post_id = '' ); // Team Email
get_tp_team_phone( $post_id = '' ); // Team Phone
get_tp_team_skype( $post_id = '' ); // Team Skype
get_tp_team_website( $post_id = '' ); // Team Website

Testimonial Details

get_tp_testimonial_designation( $post_id = '' ); // Testimonail Designation

Affiliation Details

get_tp_affiliation_link( $post_id = '' ); // Affiliation Link

Course Details

get_tp_course_type( $post_id = '' ); // Course Type
get_tp_course_duration( $post_id = '' ); // Course Duration
get_tp_course_price( $post_id = '' ); // Course Price
get_tp_course_students( $post_id = '' ); // Course no of Students
get_tp_course_language( $post_id = '' ); // Course Language
get_tp_course_assessment( $post_id = '' ); // Course assessment
get_tp_course_skills( $post_id = '' ); // Course skills

Hooks

Event Details

do_action( 'tp_event_date_action', $post_id = '' ); // Event Date
do_action( 'tp_event_start_time_action', $post_id = '' ); // Event Start Time
do_action( 'tp_event_end_time_action', $post_id = '' ); // Event End Time
do_action( 'tp_event_location_action', $post_id = '' ); // Event Location

Class Details

do_action( 'tp_class_cost_action', $post_id = '' ); // Class Cost
do_action( 'tp_class_period_action', $post_id = '' ); // Class Period
do_action( 'tp_class_size_action', $post_id = '' ); // Class Size
do_action( 'tp_class_age_group_action', $post_id = '' ); // Class Age Group

Excursion Details

do_action( 'tp_excursion_start_date_action', $post_id = '' ); // Excursion Start Date
do_action( 'tp_excursion_end_date_action', $post_id = '' ); // Excursion End Date
do_action( 'tp_excursion_location_action', $post_id = '' ); // Excursion Location

Team Details

do_action( 'tp_team_designation_action', $post_id = '' ); // Team Designation
do_action( 'tp_team_email_action', $post_id = '' ); // Team Email
do_action( 'tp_team_phone_action', $post_id = '' ); // Team Phone
do_action( 'tp_team_skype_action', $post_id = '' ); // Team Skype
do_action( 'tp_team_website_action', $post_id = '' ); // Team Website
do_action( 'tp_team_courses_action', $post_id = '' ); // Team Courses
do_action( 'tp_team_social_action', $post_id = '' ); // Team Social Links

Testimonial Details

do_action( 'tp_testimonial_rating_action', $post_id = '' ); // Testimonial Rating
do_action( 'tp_testimonial_designation_action', $post_id = '' ); // Testimonial Designation
do_action( 'tp_testimonial_social_action', $post_id = '' ); // Testimonial Social Links

Course Details

do_action( 'tp_course_type_action', $post_id = '' ); // Course Type
do_action( 'tp_course_duration_action', $post_id = '' ); // Course Duration
do_action( 'tp_course_price_action', $post_id = '' ); // Course Price
do_action( 'tp_course_students_action', $post_id = '' ); // Course no of Students
do_action( 'tp_course_language_action', $post_id = '' ); // Course Language
do_action( 'tp_course_assessment_action', $post_id = '' ); // Course Assessment
do_action( 'tp_course_skills_action', $post_id = '' ); // Course Skills
do_action( 'tp_course_professor_action', $post_id = '' ); // Course Professor
do_action( 'tp_course_counselors_action', $post_id = '' ); // Course Counselors

Affiliation Details

do_action( 'tp_affiliation_link_action', $post_id = '' ); // Affiliation Link

Meta Details

do_action( 'tp_education_posted_on_action' ); // Post Meta

Sidebar Condition Filter Hook

apply_filters( 'tp_education_is_sidebar_enable_filter', true );
add_filter( 'tp_education_is_sidebar_enable_filter', 'custom_function' ); // Use your custom sidebar enable condition function

Archive Pagination Action Hook

do_action( 'tp_education_pagination_action' );
add_action( 'tp_education_pagination_action', 'custom_function' ); //add your custom pagination function

Single Pagination Action Hook

do_action( 'tp_education_post_pagination_action' );
add_action( 'tp_education_post_pagination_action', 'custom_function' ); //add your custom post pagination function

Files

Font Awesome 4.2.0 by @davegandy License: http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) Source: http://fontawesome.io jQuery UI - v1.12.0 License: https://jquery.org/license/ ( Copyright jQuery Foundation and other contributors; Licensed MIT ) Source: http://jqueryui.com jquery-timepicker v1.11.5 by Jon Thornton License: https://github.com/jonthornton/jquery-timepicker MIT License Β© 2014 source: http://jonthornton.github.com/jquery-timepicker/
DomainExposuresHeadersLast Checked
t*e*u*s*i*e*c*o*l*l*i*e.com (WP 6.9.4) βœ… F 2026-04-26 05:10:34
o*i*s*f*.com (WP 6.3) ⚠️ F 2026-04-25 11:38:39
m*n*b*s*e*b*l.com (WP 6.9.4) βœ… F 2026-04-25 11:26:44
t*w*w*.com (WP 6.9.4) βœ… F 2026-04-25 08:58:07
u*r*v*e*i*.bg (WP 6.1.10) ⚠️ F 2026-04-25 05:34:53
u*p*r*c*t*.com (WP 6.9.4) βœ… F 2026-04-25 03:34:26
u*l*a*h*o*r*n*e*g*i*a*h*r*.com (WP 6.1.1) ⚠️ F 2026-04-24 09:55:05
e*r*o*k*.com (WP 6.9.4) βœ… F 2026-04-23 17:36:22
l*t*l*s*l*o*t*s*o*i.com (WP 6.9.4) βœ… F 2026-04-23 02:43:20
f*r*t*p*e*b*.com βœ… F 2026-04-22 06:50:06
t*r*t*i*s*n.com (WP 6.8.5) βœ… F 2026-04-21 19:53:29
k*w*a*p*a*t*c.com (WP 6.0.3) ⚠️ F 2026-04-21 16:53:24
d*a*e*g*m*s.com (WP 6.7.2) βœ… F 2026-04-21 11:16:00
y*w*r*e*u*i*.com (WP 6.9.4) βœ… F 2026-04-21 07:56:54
d*9*-*z*r*v.com βœ… F 2026-04-20 19:47:18
d*i*e*o*n*.com (WP 6.9.4) βœ… F 2026-04-20 18:08:27
s*a*s.sk βœ… F 2026-04-20 15:41:44
s*m*c*a*l*c*o*l*t.com (WP 6.9.4) βœ… F 2026-04-20 12:49:18
d*s*i*o*a*c*e.com (WP 6.9.4) βœ… F 2026-04-20 00:45:50
a*p*4*a*i*i*s.com (WP 6.9.4) βœ… F 2026-04-19 10:37:31
a*o*l*m*d*a*r*u*.com (WP 6.9.4) βœ… F 2026-04-19 00:06:27
k*a*e*s*a*i*e*f*u*d*t*o*.com (WP 6.9.4) βœ… F 2026-04-18 22:03:44
j*r*e*c*r*s*i*n*c*d*m*.org (WP 6.9.4) βœ… F 2026-04-18 21:44:42
t*i*i*a*r*n*i*s*n*e.com (WP 6.8.5) βœ… F 2026-04-17 22:33:59
u*l*t*h*d.com (WP 6.9.4) βœ… F 2026-04-17 21:57:47
d*e*l*p*a*o.com (WP 6.9.4) βœ… F 2026-04-17 08:12:56
h*l*n*f*d*e*w*r*d.com (WP 6.9.4) βœ… F 2026-04-17 02:23:02
o*a*u*a*.com (WP 6.9.4) βœ… F 2026-04-16 17:50:37
s*e*-*d.com (WP 6.9.4) βœ… F 2026-04-16 01:14:43
k*r*y*o*p*t*r*h*r*.com (WP 5.9.3) ⚠️ F 2026-04-15 20:40:53
y*r*s*l*c*y*l*n*u*g*-*o*s*.com (WP 6.7.5) βœ… F 2026-04-14 16:15:29
d*p*s*i*i*i*i*s*e*o*d*.com (WP 6.9.4) βœ… F 2026-04-14 14:42:12
n*v*g*t*n*s*c*e*s.org (WP 6.9.4) βœ… F 2026-04-14 10:06:58
e*n*v*r*o*n*a*t*l.com (WP 6.9.4) βœ… F 2026-04-13 19:09:56
h*o*a*e*h.com (WP 6.9) βœ… F 2026-04-13 18:40:29
m*r*s*a*d*n*e*t*d*o.com βœ… F 2026-04-13 15:24:51
m*r*a*i*i*a*s*h*o*.com (WP 5.0.15) ⚠️ F 2026-04-13 02:59:32
d*g*a*m*i*r*n*a.com (WP 6.9) βœ… F 2026-04-12 23:55:45
s*c*m*t*e*s.com (WP 6.9.4) βœ… F 2026-04-12 09:00:20
s*o*m*r*e*.com (WP 6.9.4) βœ… F 2026-04-12 02:34:06
s*i*h*a*k*r*r*d*c*i*n*n*.com (WP 6.9.4) βœ… F 2026-04-11 16:07:54
n*h*l*o*r*l.com (WP 4.9.26) ⚠️ F 2026-04-10 23:35:08
t*c*e*s*o*k*e.com (WP 6.6.5) βœ… F 2026-04-10 10:16:09
a*i*c*m*o*i*.com βœ… F 2026-04-10 07:26:36
s*i*h*n*r*c*r*s.com (WP 6.9.4) βœ… F 2026-04-09 17:40:13
l*v*n*c*r*l*a*n*n*c*n*e*.com (WP 6.5.8) βœ… F 2026-04-08 19:27:12
b*t*o*t.fr βœ… F 2026-04-07 18:09:32
l*t*l*a*g*l*k*r*l*n*.com (WP 6.8.3) βœ… F 2026-04-06 11:31:51
k*e*p*l*o*k.nl (WP 6.5.8) βœ… β€” 2026-03-28 10:10:07
n*t*m*r*z*i*s.org βœ… β€” 2026-03-19 18:24:13
z*e*i*c*n*e*t.com βœ… β€” 2026-03-19 16:57:42
s*m*d*o*i*a*a.com (WP 6.9.4) βœ… β€” 2026-03-15 21:56:39
r*c*a*g*a*d*l*y.com (WP 6.9.4) βœ… β€” 2026-03-14 01:59:36
p*z*d*z*o*e*i*o*a.pl βœ… β€” 2025-11-12 06:43:37
c*a*e*o*d*a.org βœ… β€” 2025-11-12 06:41:54
s*v*r.org βœ… β€” 2025-11-12 06:41:05
j*r*h*n*e*a*.nl βœ… β€” 2025-11-12 05:36:33
e*e*a*.org βœ… β€” 2025-11-12 05:34:54
o*i*n*e*d.org βœ… β€” 2025-11-12 04:49:57
f*r*t*p*e*b*.org βœ… β€” 2025-11-12 04:08:40
i*s*f*a*e*s*e*r*a.pt βœ… β€” 2025-11-12 04:05:09
e*r*p*s*h*o*u*.org βœ… β€” 2025-11-12 03:53:01
w*r*d*c*o*l*m*n.com βœ… β€” 2025-11-11 13:07:09
w*s*l*s*.com βœ… β€” 2025-11-11 12:29:52
w*d*e*a*p*a.com βœ… β€” 2025-11-11 11:55:03
w*g*m*a*h*.com βœ… β€” 2025-11-11 09:50:18
w*t*g*t*e*.com βœ… β€” 2025-11-11 09:46:31
v*s*a*e*d*g*l*.com βœ… β€” 2025-11-11 09:05:50
v*g*t*k*.com βœ… β€” 2025-11-11 08:29:16
v*b*a*t*o*d*b*d*r*.com βœ… β€” 2025-11-11 08:15:35
v*l*e*g*.com βœ… β€” 2025-11-11 07:18:10
t*e*i*t*e*a*v*r*.com βœ… β€” 2025-11-10 23:51:21
t*e*n*a*i*n*u*i*.com βœ… β€” 2025-11-10 23:40:09
s*a*t*d*v*c*l*e*e*f*d*c*t*o*.com βœ… β€” 2025-11-10 11:00:38
s*r*i*a*z.com βœ… β€” 2025-11-10 10:22:33
s*s*a*n*.com βœ… β€” 2025-11-10 08:16:59
s*r*h*e*h*r*t.com βœ… β€” 2025-11-10 08:07:07
s*i*a*e*b*a*s.com βœ… β€” 2025-11-10 07:05:14
s*a*k*m*l.com βœ… β€” 2025-11-10 06:39:04
p*o*e*t*a*a*g*.com βœ… β€” 2025-11-09 22:56:08
p*c*o*a*t*l*a*r*s*h*o*.com βœ… β€” 2025-11-09 19:51:23
p*r*e*t*b*m*e*.com βœ… β€” 2025-11-09 18:55:48
p*n*i*p*r*s*h*o*o*a*t*.com βœ… β€” 2025-11-09 18:45:12
p*g*r*a*a*o*a*s*h*o*.com βœ… β€” 2025-11-09 18:39:56
n*f*l*j*s*v*.com βœ… β€” 2025-11-09 10:33:42
m*u*d*s*h*o*.com βœ… β€” 2025-11-09 09:22:53
m*s*c*r*y*r*.com βœ… β€” 2025-11-09 08:27:18
m*s*c*y*o*n*a*d*l*.com βœ… β€” 2025-11-09 08:25:47
m*r*h*s*a*z.com βœ… β€” 2025-11-09 08:21:15
m*n*c*a*a*o*i*n*r*j*c*.com βœ… β€” 2025-11-09 08:17:39
m*k*s*c*l*e*e.com βœ… β€” 2025-11-09 08:09:26
m*y*s*k*l*j*.com βœ… β€” 2025-11-09 07:52:47
m*v*l*x.com βœ… β€” 2025-11-09 07:39:40
m*l*e*n*u*s*u*d*r*.com βœ… β€” 2025-11-09 05:18:13
k*o*e*c*o*l.com βœ… β€” 2025-11-08 17:47:00
j*a*n*v*r*o.com βœ… β€” 2025-11-08 11:12:09
j*b*d.com βœ… β€” 2025-11-08 11:05:53
j*n*-*u*i*.com βœ… β€” 2025-11-08 10:45:19
j*k*r*a*s*a*e.com βœ… β€” 2025-11-08 10:31:12
j*a*a*n*e*b*e.com βœ… β€” 2025-11-08 10:17:26

Top 50 Plugins

Plugin Count
elementor 2,763,705
contact-form-7 2,452,730
elementor-pro 1,546,184
woocommerce 1,302,279
revslider 924,221
js_composer 598,061
jetpack 497,596
wp-rocket 434,118
essential-addons-for-elementor-lite 415,356
header-footer-elementor 362,082
gutenberg-core 352,678
elementskit-lite 339,433
instagram-feed 313,147
google-analytics-for-wordpress 312,225
gravityforms 304,500
google-site-kit 301,253
complianz-gdpr 294,888
cookie-law-info 292,598
wpforms-lite 257,097
sitepress-multilingual-cms 254,170
astra-sites 250,354
bluehost-wordpress-plugin 241,097
litespeed-cache 224,187
gtranslate 183,504
coblocks 177,561
cookie-notice 169,990
gutenberg 162,533
the-events-calendar 149,080
popup-maker 140,281
premium-addons-for-elementor 135,669
astra-addon 134,465
bb-plugin 133,678
mailchimp-for-wp 132,167
LayerSlider 128,805
wp-smushit 127,445
custom-fonts 122,509
tablepress 120,972
creame-whatsapp-me 120,412
pro-elements 118,018
click-to-chat-for-whatsapp 115,581
woocommerce-gateway-stripe 112,342
duracelltomi-google-tag-manager 112,338
cleantalk-spam-protect 109,251
smart-slider-3 107,093
akismet 106,186
pixelyoursite 104,954
megamenu 103,736
fusion-builder 103,281
honeypot 102,819
royal-elementor-addons 102,709

Top 50 Themes

Theme Count
hello-elementor 881,464
astra 738,280
Divi 721,754
pub 234,524
generatepress 165,845
flatsome 165,155
Avada 155,165
h4 146,424
oceanwp 121,209
kadence 107,389
enfold 90,891
salient 88,032
bb-theme 85,966
twentytwentyfour 83,177
blocksy 81,531
twentytwentyfive 80,531
cocoon-master 76,912
betheme 72,668
twentyseventeen 70,094
woodmart 61,800
dt-the7 59,456
neve 52,307
twentytwentyone 45,266
bridge 44,342
swell 41,011
Avada-Child-Theme 39,544
twentytwenty 38,803
lightning 38,190
twentytwentythree 37,772
gox 37,336
bricks 31,465
Impreza 31,349
Newspaper 29,587
twentytwentytwo 28,978
epik-redesign 24,437
extendable 23,860
storefront 23,806
pro 23,711
uncode 23,090
yith-wonder 22,986
twentysixteen 22,667
sydney 21,681
themify-ultra 21,308
twentyfifteen 19,591
Total 19,472
porto 17,998
hestia 17,276
thrive-theme 16,469
yootheme 15,971
jupiter 15,762