如何获取meta_key的值并将其发布在任何页面上

时间:2016-10-20 14:22:56

标签: php wordpress

我在数据库中有这个:

我想发布meta_value。怎么做?我希望每个post_id在同一页面上发布指定的meta_value,并自动发布。

我如何检索meta_value并发布它?

1 个答案:

答案 0 :(得分:1)

在single.php或custom-post-type-single.php中尝试此操作

 playButton.addEventListener("click", function() {

          if (video.paused == true) {
            video.paused = false;
            // Play the video
            video.play();

            // Update the button text to 'Pause'
             document.getElementById("playbtn").src = "img/icons/pause.png";
          } else {
            video.paused = true;
            // Pause the video
            video.pause();

            // Update the button text to 'Play'
            document.getElementById("playbtn").src = "img/icons/play.png";
          }
        });