Steps to create a react app to Heroku
https://devcenter.heroku.com/articles/heroku-cli
<span> | |
<select name="month"> | |
<option value="January">January</option> | |
<option value="February">February</option> | |
<option value="March">March</option> | |
<option value="April">April</option> | |
<option value="May">May</option> | |
<option value="June">June</option> | |
<option value="July">July</option> | |
<option value="August">August</option> |
<!-- country codes (ISO 3166) and Dial codes. --> | |
<select name="countryCode" id=""> | |
<option data-countryCode="GB" value="44" Selected>UK (+44)</option> | |
<option data-countryCode="US" value="1">USA (+1)</option> | |
<optgroup label="Other countries"> | |
<option data-countryCode="DZ" value="213">Algeria (+213)</option> | |
<option data-countryCode="AD" value="376">Andorra (+376)</option> | |
<option data-countryCode="AO" value="244">Angola (+244)</option> | |
<option data-countryCode="AI" value="1264">Anguilla (+1264)</option> | |
<option data-countryCode="AG" value="1268">Antigua & Barbuda (+1268)</option> |
<?php | |
$backgrounds = array | |
( | |
array | |
( | |
'image' => 'images/42.png', | |
'url' => 'http://google.se' | |
), | |
array |
.p0{padding:0!important}.p1{padding:1!important}.p2{padding:2!important}.p3{padding:3!important}.p4{padding:4!important}.p5{padding:5!important}.p6{padding:6!important}.p7{padding:7!important}.p8{padding:8!important}.p9{padding:9!important}.p10{padding:10!important}.p11{padding:11!important}.p12{padding:12!important}.p13{padding:13!important}.p14{padding:14!important}.p15{padding:15!important}.p16{padding:16!important}.p17{padding:17!important}.p18{padding:18!important}.p19{padding:19!important}.p20{padding:20!important}.p21{padding:21!important}.p22{padding:22!important}.p23{padding:23!important}.p24{padding:24!important}.p25{padding:25!important}.p26{padding:26!important}.p27{padding:27!important}.p28{padding:28!important}.p29{padding:29!important}.p30{padding:30!important}.p31{padding:31!important}.p32{padding:32!important}.p33{padding:33!important}.p34{padding:34!important}.p35{padding:35!important}.p36{padding:36!important}.p37{padding:37!important}.p38{padding:38!important}.p39{padding:39!important}.p40 |
/*Contact form 7 remove span*/ | |
add_filter('wpcf7_form_elements', function($content) { | |
$content = preg_replace('/<(span).*?class="\s*(?:.*\s)?wpcf7-form-control-wrap(?:\s[^"]+)?\s*"[^\>]*>(.*)<\/\1>/i', '\2', $content); | |
$content = str_replace('<br />', '', $content); | |
return $content; | |
}); |
Steps to create a react app to Heroku
https://devcenter.heroku.com/articles/heroku-cli
https://devcenter.heroku.com/articles/heroku-cli
touch Procfile (web: vendor/bin/heroku-php-apache2 public/)
Smashing magazine has been around for a while and has great resources for HTML, CSS, JavaScript and front-end technologies but also has articles on things like design patterns, workflow and even more personal stuff like the mental health of web developers. They offer books for sale, events as well as a full featured job board.
davidwalsh.name is JavaScript based blog and this site features articles on modern JavaScript. Things like promises and async / await, destructuring, react, node and even some jquery. If you’re JavaScript developer then you should definitely check this blog out. The posts are very short and concise and easy to read and comprehend. This is probably one of my favorite JavaScript blogs