automatewoo/includes/DataTypes/SenseiCourse.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

33 lines
477 B
PHP

<?php
namespace AutomateWoo\DataTypes;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Course data type class.
*
* @since 5.6.10
*/
class SenseiCourse extends Post {
/**
* Get singular name for data type.
*
* @return string
*/
public function get_singular_name() {
return __( 'Course', 'automatewoo' );
}
/**
* Get plural name for data type.
*
* @return string
*/
public function get_plural_name() {
return __( 'Courses', 'automatewoo' );
}
}