steta7
Forum Replies Created
-
Forum: Plugins
In reply to: Multi Level Filtering / Sorting Plugin?This is the closest thing I found, but it doesn’t fully address the multi-level filtering I was looking for…
Forum: Fixing WordPress
In reply to: How to allow users to choose # of posts to displayOk Thanks a lot g3legacy!
Forum: Fixing WordPress
In reply to: How to allow users to choose # of posts to displayYes, I’m definitely not a developer and have just been trying to learn things on the go lol. I have used and am familiar with query_posts however I just don’t know I can “connect” the choice the user makes using the drop down below to the posts_per_page # (i.e. if user selects option “9”, how do i get the query_posts(‘posts_per_page=9’).
<form>
<select name=”show_posts”>
<option value=”9″>9</option>
<option value=”15″>15</option>
<option value=”21″>21</option>
<option value=”27″>27</option>
</select>
</form>Again thanks for your insight and help, and apologies if I seem clueless ( which for the most part I am 🙂 )
Forum: Fixing WordPress
In reply to: How to allow users to choose # of posts to displayThanks for the reply g3legacy. I was hoping to have something like you mentioned (a drop down where the user can select the number of posts show on the homepage). I’m new to development and the Loop. Can you give me more insight on how exactly to utilize the query_posts to make a dropdown?