Answers for "add post meta wordpress code"

PHP
1

add post meta wordpress

<?php

$post_id = 1;
$meta_key = '_test';
$meta_value = 'this is a test';
$unique = true;

add_post_meta( $post_id, $meta_key, $meta_value, $unique );
Posted by: Guest on June-03-2020
0

wordpress link post tags

$posttags = get_the_tags();
if ($posttags) {
  foreach($posttags as $tag) {
    echo '<a href="' . get_tag_link($tag->term_id) . '">' . $tag->name . '</a>';
  }
}
Posted by: Guest on August-28-2020

Browse Popular Code Answers by Language