Tagged Questions
-1
votes
1answer
205 views
Applying if (get_post_meta) to new shortcode
It's my first time here so here goes :)
I've created a custom image field which allows me to upload new images, or have images added via a form from the frontend. I want these to display.
I'm ...
0
votes
2answers
435 views
Display post_meta in Shortcode
Simple shortcode turning overcomplicated
<?php
function recent_posts() {
$q = new WP_Query(
array( 'orderby' => 'date', 'posts_per_page' => '1')
);
$list = '<ul>';
...