Last active
August 16, 2017 21:38
-
-
Save taciara/33d61947303abf92b0dad92295b498e3 to your computer and use it in GitHub Desktop.
Wordpress & Woocommerce
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 | |
//Inserir Informacoes no Header - Isso você coloca no functions.php ;) | |
add_action( 'wp_head', 'InformacoesDoHeader', 1 ); | |
function InformacoesDoHeader () { ?> | |
Aqui você coloca as informações que precisa adicionar header do seu site. Meta, Css.... | |
<?php } ?> |
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 | |
//CRIANDO MEU PRIMEIRO SHORTCODE - Isso você coloca no functions.php ;) | |
add_shortcode('nome_do_seu_shortcode', 'NomeDaSuaFuncao'); | |
function NomeDaSuaFuncao() { ?> | |
Aqui você fica livre para colocar qualquer código html, php... | |
=) | |
É sempre bom utilizar shortcode, para manter seu cod mais clean e fácil. | |
<?php } ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment