My Html:
<div id="my-slider" class="flexslider">
<ul class="slides">
<li>
<div class="glass-image-content">
<img id="img-zoom-default" | /** | |
| * Requested | |
| * <script type="text/javascript" src="http://canvg.googlecode.com/svn/trunk/rgbcolor.js"></script> | |
| * <script type="text/javascript" src="http://canvg.googlecode.com/svn/trunk/canvg.js"></script> | |
| * / | |
| /** | |
| * Convert object to a canvas object | |
| */ |
| <?php | |
| //Get Slug taxonomy | |
| $slug_taxonomy = get_query_var('taxonomy_name'); | |
| //Get Object current term of taxonomy | |
| $term = get_term_by('slug', $slug_taxonomy, 'taxonomy_name'); | |
| //Return Object | |
| var_dump($term); |
| /* | |
| * Extender método / Extend | |
| */ | |
| $(function() { | |
| $.fn.fadeOutRemove = function(time) { | |
| $(this).fadeOut(time, function() { | |
| $(this).remove(); | |
| }); | |
| }; | |
| } |
| /* Triangulo CSS (pico superior) */ | |
| .triangulo_sup { | |
| width: 0; | |
| height: 0; | |
| border-left: 50px solid transparent; | |
| border-right: 50px solid transparent; | |
| border-bottom: 100px solid #000; | |
| } |
| <?php | |
| /** | |
| * Funciones Útiles Wordpress / Useful functions for wordpress | |
| */ | |
| //Pintar MENU | |
| //https://developer.wordpress.org/reference/functions/wp_nav_menu/ | |
| //--------------------------------------------------------------- | |
| wp_nav_menu(array( |
Here some very essential and useful plugins for Sublime Text Editor.
First, it's necessary to install Package Control.
** Basic: Init git and upload files **
git init # Inicializar
git add . # Añadir archivos
git status # Estado
git commit . -m "Mi comentario"
git remote add origin https://github.com/user/repo.git # Definir repositorio
git push origin master