Posts by Felipe Elia • 136 points
5 posts
-
0
votes1
answer43
viewsA: Questions about pages and links in wordpress
Actually, they’re two different things. There is the page that is where you edit the content, sets which url will use and etc. and there is which file of your theme wordpress will use to display the…
-
1
votes3
answers392
viewsA: How to fill in Wordpress theme’s own form data using jQuery
You can mount the string with all the <option> and then make the append, leaving your code like this: $(document).ready(function(){ var selectbox = $("#avia_4_1"); $.get(…
-
0
votes1
answer319
viewsA: Page not found for Wordpress Post type Category
The wordpress documentation provides an about hierarchy of theme files that can help you, but I believe that the file you want to create will be called taxonomy-SLUG_DA_TAXONOMIA.php. Below is an…
-
0
votes1
answer531
viewsA: wordpress grab the meta_key value url
Adding what colleagues commented on your question the code would look like this: $minha_variavel = get_post_meta($post->ID, 'mp3'); // O terceiro parâmetro é FALSE por padrão foreach…
-
1
votes2
answers943
viewsA: Index in Wordpress Subfolder
This should be just a comment in Caio’s reply, but I have no reputation for it. The only addition is that it is possible to change the . htaccess wordpress so that it has no effect on requests made…