Posts by Rafael Zaleski • 11 points
2 posts
-
1
votes3
answers2819
viewsA: Ways to call image in wordpress
There may be a lock on . htaccess or directory permissions. A tip I love to use in cases like this is: Upload the image inside Wordpress through the media menu. Copy the generated url to the loaded…
-
0
votes2
answers101
viewsA: How to use the $ jquery in wordpress?
jQuery(document).ready(function($) { // Pode usar normalmente aqui dentro. $('#element').hide(); //exemplo }); Another way would be just assigning the variable $: $ = jQuery; After this line could…