This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_filter( 'post_type_archive_link', 'fix_post_type_archive_link', 10, 2 ); | |
| function fix_post_type_archive_link( $link, $post_type ) { | |
| if($post_type == 'scripts'){ | |
| $link = str_replace('/%some-slug%', '', $link); | |
| } | |
| return $link; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| 'rewrite' => array('slug' => 'scripts/%custom-taxonomy%'), // register post type arg 'rewrite' | |
| */ | |
| add_filter('post_type_link', 'change_cpt_post_permalink', 99, 3); | |
| function change_cpt_post_permalink($permalink, $post_id) { | |
| if (strpos($permalink, '%custom-taxonomy%') === FALSE) | |
| return $permalink; | |
| $post = get_post($post_id); | |
| if (!$post) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_action('manage_users_columns','kjl_modify_user_columns'); | |
| function kjl_modify_user_columns($column_headers) { | |
| //unset($column_headers['posts']); | |
| $column_headers['status'] = 'Status'; | |
| return $column_headers; | |
| } | |
| function kjl_user_posts_count_column_content($value, $column_name, $user_id) { | |
| //$user = get_userdata($user_id); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Add ACF Columns | |
| function add_new_product_cat_column($column) { | |
| $column['english_name'] = 'English Name'; | |
| return $column; | |
| } | |
| add_filter('manage_edit-product_category_columns', 'add_new_product_cat_column'); | |
| function add_new_product_cat_admin_column_show_value( $content, $column_name, $term_id ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Get Youtube URL | |
| $yturl = 'https://www.youtube.com/watch?v=HhAKNSsb4t4'; | |
| preg_match("/^(?:http(?:s)?:\/\/)?(?:www\.)?(?:m\.)?(?:youtu\.be\/|youtube\.com\/(?:(?:watch)?\?(?:.*&)?v(?:i)?=|(?:embed|v|vi|user)\/))([^\?&\"'>]+)/", $yturl, $matches); | |
| $video_id = $matches[1]; | |
| // Get Thumbnail | |
| $file_headers = get_headers( 'http://img.youtube.com/vi/' . $video_id . '/maxresdefault.jpg' ); | |
| $is_404 = $file_headers[0] == 'HTTP/1.0 404 Not Found' || false !== strpos( $file_headers[0], '404 Not Found' ); | |
| $video_thumbnail_url = $is_404 ? 'http://img.youtube.com/vi/' . $youtube_id . '/maxresdefault.jpg' : 'http://img.youtube.com/vi/' . $video_id . '/hqdefault.jpg'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * For debug | |
| * show template file name | |
| * ---------------------------------------------------------*/ | |
| function show_template() { | |
| global $template; | |
| echo basename( $template ); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_filter('request', 'hwk_post_type_toplevel_request', 1, 1); | |
| function hwk_post_type_toplevel_request($query){ | |
| $post_type = 'portfolio'; | |
| if(isset($query[$post_type]) && isset($query['post_type']) && $query['post_type'] === 'portfolio') | |
| return $query; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function get_field_from_block($post_id, $block_name, $field_name){ | |
| $block_name = 'acf/' . $block_name; | |
| $post = get_post($post_id); | |
| if ( has_blocks( $post->post_content ) ) { | |
| $blocks = parse_blocks( $post->post_content ); | |
| foreach ($blocks as $block){ | |
| if ($block['attrs']['name'] == $block_name){ | |
| $data = $block['attrs']['data'][$field_name]; | |
| break; |