Welcome To Snipplr
Everyone's Recent Snippets Tagged wordpress
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
PHP
Activating the Post Thumbnail feature in Wordpress but not showing anything if there is no image to display
I looked everywhere trying to find some code that could show me how to display the post thumbnail if there is an image, but to display absolutely nothing if there isn't an image to display (most just either added an image or there was a broken image...
1
3900
posted 15 years ago by bdnnikki
A quick snippet of the PHP/Wordpress code behind my archive page, mainly for @andypoppins :D
0
842
posted 15 years ago by psdesignuk
This will let you define individual templates for posts within specific categories. Simply name your post file like: single-SLUG.php
0
762
posted 15 years ago by creativelifeform
catches the first image of a post so you can display it however you like within the loop
0
751
posted 15 years ago by creativelifeform
courtesy of mark8barnes (http://wordpress.org/support/profile/52354)
1
1049
posted 15 years ago by iroybot
PHP
Wordpress - Show link to the next and previos brother of the current page, and a link to the page parent
Must be placed after the_post()
1
3315
posted 15 years ago by Overdeath
Must be placed after the_post() so make sure you verify that if you place it in the sidebar.
0
1347
posted 15 years ago by Overdeath
You can see the results under a single post, where photos are shown, without any text. The photo is taken from the uploaded photo from the post. All you need is the get the image plugin from www.justintadlock.com
0
987
posted 15 years ago by Kokkekniven
All it takes is a stylesheet and a small function in the theme’s functions.php file
1
1001
posted 15 years ago by math89
Add the PHP to custom_functions.php and the following CSS to custom.css
.custom ul.menu li.search {float:right;}
.custom ul.menu li.search form {padding:0.3em;}
.custom ul.menu li.search form input {padding:0.4em;}
0
1069
posted 15 years ago by kristarella
This is designed to show 10 posts on each of the pages after the home/blog page when the home page only shows 5 (because if you just use posts_per_page=10 without the offset you will lose the most recent posts numbered 6-10 in between the first and...
0
826
posted 15 years ago by kristarella