Copy from https://github.com/dannyfritz/commit-message-emoji
Initial Commit | 🎉 Party Popper
Version Tag | 🔖 Bookmark
New Feature | ✨ Sparkles
Bugfix | 🐛 | 🐛 Bug
Copy from https://github.com/dannyfritz/commit-message-emoji
Initial Commit | 🎉 Party Popper
Version Tag | 🔖 Bookmark
New Feature | ✨ Sparkles
Bugfix | 🐛 | 🐛 Bug
| // License: GPLv2+ | |
| var el = wp.element.createElement, | |
| registerBlockType = wp.blocks.registerBlockType, | |
| ServerSideRender = wp.components.ServerSideRender, | |
| TextControl = wp.components.TextControl, | |
| InspectorControls = wp.editor.InspectorControls; | |
| /* | |
| * Here's where we register the block in JavaScript. |
| Hola <nombre del cliente>: | |
| Ante todo muchas gracias por ponerte en contacto y por confiar en nuestros servicios para el desarrollo de tu web. | |
| Necesitaría que por favor respondas las siguientes preguntas para realizar un presupuesto acorde a las necesidades de tu proyecto. | |
| ==================== | |
| Sobre su negocio: | |
| - ¿A qué se dedica tu empresa/proyecto/emprendimiento? |
| <?php | |
| function cl_product_delete_meta_price( $product = null ) { | |
| if ( ! is_object( $product ) ) { | |
| global $product; | |
| } | |
| if ( ! is_a( $product, 'WC_Product' ) ) { | |
| return; | |
| } |
| /** | |
| * Retrieves all the rows in the active spreadsheet that contain data and logs the | |
| * values for each row. | |
| * For more information on using the Spreadsheet API, see | |
| * https://developers.google.com/apps-script/service_spreadsheet | |
| */ | |
| function readRows() { | |
| var sheet = SpreadsheetApp.getActiveSheet(); | |
| var rows = sheet.getDataRange(); | |
| var numRows = rows.getNumRows(); |
| // http://bit.ly/qDefer | |
| $(function(){$('script[type="text/javascript/defer"]').each(function(){$(this).clone().attr('type','').insertAfter(this)})}); |
| <?php | |
| /* | |
| * dl-file.php | |
| * | |
| * Protect uploaded files with login. | |
| * | |
| * @link http://wordpress.stackexchange.com/questions/37144/protect-wordpress-uploads-if-user-is-not-logged-in | |
| * | |
| * @author hakre <http://hakre.wordpress.com/> | |
| * @license GPL-3.0+ |