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 | |
// Insert into your functions.php and have fun by creating login error msgs | |
function guwp_error_msgs() { | |
// insert how many msgs you want as array items. it will be shown randomly (html is allowed) | |
$custom_error_msgs = [ | |
'<strong>YOU</strong> SHALL NOT PASS!', | |
'<strong>HEY!</strong> GET OUT OF HERE!', | |
]; | |
// get and returns a random array item to show as the error msg | |
return $custom_error_msgs[array_rand($custom_error_msgs)]; |
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
jQuery(function($){ | |
$.datepicker.regional['pt-BR'] = { | |
closeText: 'Fechar', | |
prevText: '<Anterior', | |
nextText: 'Próximo>', | |
currentText: 'Hoje', | |
monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho', | |
'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'], | |
monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun', | |
'Jul','Ago','Set','Out','Nov','Dez'], |
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
| | |
├── api/ | |
├── assets/ | |
│ │ css/ | |
│ │ ├── plugins.css | |
│ │ ├── print.css | |
│ │ └── style.css | |
│ │ fonts/ | |
│ │ images/ | |
│ │ ├── bgs/ |
NewerOlder