Posts by Luiz Felipe Leite • 11 points
2 posts
-
0
votes1
answer25
viewsA: shows 3 custom fields with conditions
Follow the correct code: <?php if ( custom_get_meta( 'sinopse') ) { echo custom_get_meta( 'sinopse' ); } else if ( custom_get_meta( 'Plot') ) { echo custom_get_meta( 'Plot' ); } else {…
-
1
votes1
answer27
viewsA: how do I change the name or even make interactions in a div
Create a button to perform the action: <button onclick="clicou();">Clique aqui</button> And do not forget to put ; at the end of each line of js: function clicou() { var toc =…
javascriptanswered Luiz Felipe Leite 11