我在Wordpress中有4个帖子。在这些帖子中,他们可以添加自定义字段的链接。我有这个代码
<?xml version="1.0" encoding="UTF-8"?>
<configuration scan="true">
<property name="LOG_TEMP" value="./logs"/>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
<logger name="com.example" level="INFO"/>
<root level="WARN">
<appender-ref ref="CONSOLE"/>
</root>
</configuration>
输出为:104013301196827,#link (我为$ other_page做了一个例子)
我的qeustion是:如何使用这些id来建立链接?
感谢任何帮助,
答案 0 :(得分:1)
get_the_ID()
- 检索WordPress循环中当前项的ID。
<?php
$args = array( 'post_type' => 'post');
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
the_ID();
the_field('bloglink', get_the_ID()); // show link
endwhile;
?>