Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| **/*.min.js | |
| **/*.build.js | |
| **/node_modules/** | |
| **/vendor/** | |
| build | |
| coverage | |
| cypress | |
| node_modules | |
| vendor |
| watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache clean && npm install && npm start -- --reset-cache |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| <div id="posts"> | |
| <?php | |
| // Get category ID from Theme Customizer | |
| $catID = get_theme_mod( 'tcx_category' ); | |
| // Only get Posts that are assigned to the given category ID | |
| $args = array( | |
| 'post_type' => 'post', | |
| 'cat' => $catID | |
| ); |