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
| <style> | |
| .lamps__input { | |
| width: 40px; | |
| border: none; | |
| padding-left: 10px; | |
| border-bottom: 1px solid #959595; | |
| position: absolute; | |
| z-index: 10; | |
| right: 22px; |
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
| server { | |
| listen 80; | |
| server_name example.com *.example.com; | |
| root /var/www/example.com/$subdomain; | |
| set $subdomain ""; | |
| if ($host ~* ^([a-z0-9-\.]+)\.example.com$) { | |
| set $subdomain $1; | |
| } | |
| if ($host ~* ^www.example.com$) { | |
| set $subdomain ""; |
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 rewind_posts(); ?> | |
| <?php wp_reset_postdata(); wp_reset_query(); ?> | |
| <?php $current_page = (get_query_var('paged')) ? get_query_var('paged') : 1; | |
| $args = array( | |
| 'paged' => $current_page, | |
| 'post_type' => 'post', | |
| 'showposts' => 20, | |
| 'order' => 'DESC', | |
| 'orderby' => 'ID', // How create orderby => 'rating-result' | |
| 'category_name' => 'forex-brokers' |