Joe Abate
Episode: Why Interest Rates on Savings Accounts Are Still So Low | Thu, 23 Feb 2023
| <?php | |
| add_filter('learndash_mark_complete', function($return, $post) { | |
| $course_hide_markcomplete = 0; | |
| if(learndash_get_course_id($post->ID) == $course_hide_markcomplete) { | |
| $return = ''; | |
| } | |
| return $return; | |
| }, 10, 2); |
| <?php | |
| add_action('template_redirect', function () { | |
| if (is_user_logged_in()) { | |
| $q_object = get_queried_object(); | |
| if (($q_object) && (is_a($q_object, 'WP_Post')) && ($q_object->post_type == 'sfwd-courses')) { | |
| if (sfwd_lms_has_access($q_object->ID)) { | |
| $steps = learndash_get_course_steps($q_object->ID); | |
| if (count($steps)) { | |
| wp_redirect(get_permalink($steps[0])); |
| <?php | |
| class scriptmem { | |
| public static $cache; | |
| public static function init() { | |
| if(self::$cache === null) { | |
| self::$cache = array(); | |
| } | |
| return self::$cache; | |
| } |
| wget -O - "http://example.com/?query=1" > /dev/null 2>&1 |
| .top-timeline-tweetbox .tweet-form.condensed .rich-editor.notie div { | |
| display: none; | |
| } | |
| .top-timeline-tweetbox .tweet-form.condensed .rich-editor.notie:after { | |
| content: "WHAT IS HAPPENING"; | |
| } | |
| .top-timeline-tweetbox .tweet-form div.rich-editor.is-showPlaceholder:before { | |
| content: "WHAT IS HAPPENING" | |
| } |