| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/harmoniegolfpark.com/wp-content/plugins/acf-theme-code/render/ |
Upload File : |
<?php
// Relationship field
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) exit;
// Get return format
$return_format = isset( $this->settings['return_format'] ) ? $this->settings['return_format'] : '';
// If returned as object
if ( $return_format == 'object' ) {
echo $this->indent . htmlspecialchars("<?php \$".$this->name." = " . $this->get_field_method . "( '" . $this->name . "' ); ?>")."\n";
echo $this->indent . htmlspecialchars("<?php if ( \$".$this->name." ): ?>")."\n";
echo $this->indent . htmlspecialchars(" <?php foreach ( \$".$this->name." as \$post ): ?>")."\n";
echo $this->indent . htmlspecialchars(" <?php setup_postdata (\$post); ?>")."\n";
echo $this->indent . htmlspecialchars(" <a href=\"<?php the_permalink(); ?>\"><?php the_title(); ?></a>")."\n";
echo $this->indent . htmlspecialchars(" <?php endforeach; ?>")."\n";
echo $this->indent . htmlspecialchars("<?php wp_reset_postdata(); ?>")."\n";
echo $this->indent . htmlspecialchars("<?php endif; ?>")."\n";
}
// IF returned as ID
if ( $return_format == 'id' ) {
echo $this->indent . htmlspecialchars("<?php \$".$this->name." = " . $this->get_field_method . "( '" . $this->name . "' ); ?>")."\n";
echo $this->indent . htmlspecialchars("<?php if ( \$".$this->name." ): ?>")."\n";
echo $this->indent . htmlspecialchars(" <?php foreach ( \$".$this->name." as \$p ): ?>")."\n";
echo $this->indent . htmlspecialchars(" <a href=\"<?php echo get_permalink( \$p ); ?>\"><?php echo get_the_title( \$p ); ?></a>")."\n";
echo $this->indent . htmlspecialchars(" <?php endforeach; ?>")."\n";
echo $this->indent . htmlspecialchars("<?php endif; ?>")."\n";
}