I hereby claim:
- I am jmsmrgn on github.
- I am jmsmrgn (https://keybase.io/jmsmrgn) on keybase.
- I have a public key ASCjDRHgAI0o4Zzt_NmDpQCBJvELDCoffpHOc3bHJ5MGPgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| osascript -e 'tell application "System Events" to get the name of every login item' | |
| osascript -e 'tell application "System Events" to make login item at end with properties {path:"/Applications/Name of app.app", hidden:false}' | |
| osascript -e 'tell application "System Events" to delete login item "itemname"' |
| new webpack.LoaderOptionsPlugin({ | |
| options: { | |
| sassLoader: { | |
| data: '@import "app/styles/settings/_settings.scss";', | |
| includePaths: 'app/styles' | |
| }, | |
| context: path.resolve(__dirname, '../../') // must evaluate to root of project | |
| } | |
| }) |
| // Async load | |
| function async_scripts($url) { | |
| if (strpos( $url, '#asyncload') === false) { | |
| return $url; | |
| } else if (is_admin()) { | |
| return str_replace('#asyncload', '', $url ); | |
| } else { | |
| return str_replace('#asyncload', '', $url )."' async='async"; | |
| } | |
| } |
| /** | |
| * Search should only return posts | |
| */ | |
| function search_filter($query) { | |
| if (!$query->is_admin && $query->is_search) { | |
| $query->set('post_type', 'post'); | |
| // $query->set('post__not_in', array(1,5,10)); | |
| } | |
| return $query; | |
| } |
| /** | |
| * Blog view conditional check | |
| */ | |
| function is_blog() { | |
| return (is_author() || is_category() || is_tag() || is_date() || is_home() || is_single()) && 'post' == get_post_type(); | |
| } |
| /** | |
| * Pretty urls for search results | |
| */ | |
| function nice_search_redirect() { | |
| global $wp_rewrite; | |
| if (!isset($wp_rewrite) || !is_object( $wp_rewrite ) || !$wp_rewrite->using_permalinks()) | |
| return; | |
| $search_base = $wp_rewrite->search_base; |
| /** | |
| * Add pdf media type filter to media manager | |
| */ | |
| function modify_post_mime_types($post_mime_types) { | |
| $post_mime_types['application/pdf'] = array(__('PDFs'), __('Manage PDFs'), _n_noop('PDF <span class="count">(%s)</span>', 'PDFs <span class="count">(%s)</span>')); | |
| return $post_mime_types; | |
| } | |
| add_filter( 'post_mime_types', 'modify_post_mime_types' ); |
| @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { | |
| /* IE10-specific styles go here */ | |
| } |
| /** | |
| * Add page slug to body class | |
| */ | |
| function add_slug_body_class($classes) { | |
| global $post; | |
| if (isset($post)) { | |
| $classes[] = $post->post_type . '-' . $post->post_name; | |
| } | |
| return $classes; | |
| } |