How to get any type posts include attachments by ids?

‘post_type’=>’any’ should get you all types except revisions so you should get the attachments but if you don’t try: query_posts( array( ‘posts_per_page’ => -1, ‘ignore_stickies’ => 1, ‘post_type’=> array( ‘post’, ‘page’, ‘attachment’ ), ‘post_status’ => array( null ), ‘post__in’=> $id_list ) ); Update As t31os pointed out that: Attachments don’t have a publish status, which … Read more

Get an image from the media library. Struggling with the code?

If you want to exit the loop after you find an attachment, use break. // Define $programme and pull up $attachments as above $attachment_url=””; foreach ( $attachments as $attachment ) { if ($attachment->post_title == $programme) { $attachment_url = wp_get_attachment_url($attachment->ID); break; } } if ( $attachment_url ) { echo $attachment_url; } else { echo ‘/images/nontvimg.jpg’; }

How to add media from front-end to an existing post and edit file title

First add to your for the new input field: <form id=”file-form” enctype=”multipart/form-data” action=”<?php echo $_SERVER[‘REQUEST_URI’]; ?>” method=”POST”> <p id=”async-upload-wrap”> <label for=”async-upload”>upload</label> <input type=”file” id=”async-upload” name=”async-upload”> <input type=”submit” value=”Upload” name=”html-upload”> </p> <p id=”image_title”> <label for=”image_title”>Image Title</label> <input type=”text” id=”image_title” name=”image_title” value=””> </p> <p> <input type=”hidden” name=”post_id” id=”post_id” value=”<?php echo $post_id ?>” /> <?php wp_nonce_field(‘client-file-upload’); ?> <input … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)