pratikshrestha

Clean Education Pro Courses position change

Feb 7th, 2018
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. /**
  2.  * Courses position for child theme
  3.  *
  4.  * @action clean_education_content, clean_education_after_secondary
  5.  *
  6.  * @since Clean Education Child
  7.  */
  8. function clean_education_courses_display_position() {
  9.     if ( ! is_front_page() ) {
  10.         add_action( 'clean_education_after_content', 'clean_education_courses_display', 70 );
  11.     } else {
  12.         add_action( 'clean_education_before_content', 'clean_education_courses_display', 60 );
  13.     }
  14. }
  15. add_action( 'clean_education_before', 'clean_education_courses_display_position' );
Advertisement
Add Comment
Please, Sign In to add comment