So I'm having a problem. In the website every product is a post, but when we add new products we want something like a newsletter, mostly like a post so in the sidebar of the home page you can see the new products or events of the month. I'm using pages because I don't want to re-post a product on every new newsletter so I junt wanna display the posts inside the page. In the products page I separate every product by category and sub-category but since I want to group specific post to publish them on the sidebar I think that pages was the best way to do it.
Right now I'm using this code:
<?php $productos = new WP_Query(array( 'post__in'=> array(81, 83), 'orderby'=>'title', 'order'=>'ASC' ) ); if ($productos->have_posts()) : while ($productos->have_posts()) : $productos->the_post(); ?>
It display the posts with the id of 81 and 83, I would like to show post by slug using 'name' as the codex says because is going to take some time to be checking the ids of the new post, insted of using the name of every new product but It dosen't work in array or I'm doing something wrong.
$productos = new WP_Query(array( 'name'=> array($names), 'orderby'=>'title', 'order'=>'ASC' ) );
So every time I publish a new page I just write the slugs of the posts that I want to include in the page in a custom field, as you can see I'm not very good with php but I trying to learn and I search a lot for something that could work before asking in here.
I try the ggis inline post plugin and although it works I need the id for every post I want to include and I will need to edit the plugin because I want a different order in the output of the post thats why I don't like to depend to much on plugins.
I hope someone can help me with this and sorry for my bad english (not my first language)
And in my page template I just write [producto slug="MY-SLUG"] and that way I can display multiple post just with the slugs. Hope someone find this useful.
Right now I'm using this code:
It display the posts with the id of 81 and 83, I would like to show post by slug using 'name' as the codex says because is going to take some time to be checking the ids of the new post, insted of using the name of every new product but It dosen't work in array or I'm doing something wrong.
Now I will love to make something like this work
So every time I publish a new page I just write the slugs of the posts that I want to include in the page in a custom field, as you can see I'm not very good with php but I trying to learn and I search a lot for something that could work before asking in here.
I try the ggis inline post plugin and although it works I need the id for every post I want to include and I will need to edit the plugin because I want a different order in the output of the post thats why I don't like to depend to much on plugins.
I hope someone can help me with this and sorry for my bad english (not my first language)
http://bit.ly/cr8tR
http://bit.ly/MjzTO8
But I still have the problem that I want to display 2 or more posts per page so I need something like
But it looks like you can't do an array on the name argument.
So I put this on my functions.php page
And in my page template I just write [producto slug="MY-SLUG"] and that way I can display multiple post just with the slugs. Hope someone find this useful.