Skip to content

Instantly share code, notes, and snippets.

View codeiscode-dev's full-sized avatar

codeiscode-dev

View GitHub Profile
@codeiscode-dev
codeiscode-dev / wpep_primary_content_before_grid.php
Last active January 25, 2018 07:14
wpep_primary_content_before_grid
<?php
do_action( "wpep_primary_content_before_grid" );
@codeiscode-dev
codeiscode-dev / wpep_primary_content_after_grid.php
Last active January 25, 2018 07:15
wpep_primary_content_after_grid
<?php
do_action( "wpep_primary_content_after_grid" );
@codeiscode-dev
codeiscode-dev / wpep_before_main_content.php
Last active January 25, 2018 07:17
wpep_before_main_content
<?php
do_action( "wpep_before_main_content" );
@codeiscode-dev
codeiscode-dev / wpep_after_main_content.php
Last active January 25, 2018 07:17
wpep_after_main_content
<?php
do_action( "wpep_after_main_content" );
@codeiscode-dev
codeiscode-dev / wpep_primary_content_grid_list.php
Last active January 25, 2018 07:18
wpep_primary_content_grid_list
<?php
do_action( "wpep_primary_content_grid_list" )
@codeiscode-dev
codeiscode-dev / wpep_administration_lesson_option_field.php
Last active January 25, 2018 07:19
wpep_administration_lesson_option_field
<?php
do_action( "wpep_administration_lesson_option_field", $field_prefix, $current_options );
@codeiscode-dev
codeiscode-dev / wpep_administration_section_option_field.php
Last active January 25, 2018 07:20
wpep_administration_section_option_field
<?php
do_action( "wpep_administration_section_option_field", $field_prefix, $current_options );
@codeiscode-dev
codeiscode-dev / wpep_user_activity_lesson_status.php
Last active January 25, 2018 07:21
wpep_user_activity_lesson_status
<?php
do_action( "wpep_user_activity_lesson_status", $lesson_id, $is_completed, $user_id );
@codeiscode-dev
codeiscode-dev / wpep_single_content_sidebar.php
Last active January 25, 2018 07:22
wpep_single_content_sidebar
<?php
do_action( "wpep_single_content_sidebar" )
@codeiscode-dev
codeiscode-dev / example.php
Last active January 25, 2018 07:30
wpep_primary_content_category_list
<?php
namespace WPEP\Coordinator\Content;
use WPEP\Controller as WPEP_Controller;
class Primary {
public function __construct() {
add_action( 'wpep_primary_content_category_list', array( $this, 'output_category_list' ), 1 );
}