groups

name language licence
ALTERNATING ROWS (WORDPRESS VERSION) PHP BSD
WORDPRESS (WP) CUSTOM FIELDS PHP BSD
WORDPRESS STATIC HTML TEMPLATE PHP BSD
Display In 2-Column Table PHP BSD
WordPress custom post listing PHP BSD
Export WordPress tables PHP BSD
SHOW WORDPRESS POST ATTACHMENTS PHP BSD
WORDPRESS GET URL PHP BSD

< 1 2 3 4 5 6 7 8 9 >



language: PHP
licence: BSD

SHOW WORDPRESS POST ATTACHMENTS

options: view full snippetsend to code collector
SHOW WORDPRESS POST ATTACHMENTS

//taken from wordpress-- it took me a whole to find this on their site

// place inside loop

$args = array(
	'post_type' => 'attachment',
	'numberposts' => null,
	'post_status' => null,
	'post_parent' => $post->ID
); 
$attachments = get_posts($args);
if ($attachments) {
	foreach ($attachments as $attachment) {
	
(Continues...)