Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@tessak22
Last active October 29, 2019 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tessak22/a13c720e59347026cdbae3c85cc3d808 to your computer and use it in GitHub Desktop.
Save tessak22/a13c720e59347026cdbae3c85cc3d808 to your computer and use it in GitHub Desktop.
ACF Team Member Block
/* CSS HERE */
<?php
/**
* Team Member Block — Register Callback example
*/
add_action('acf/init', 'team');
function team() {
// check function exists
if( function_exists('acf_register_block') ) {
// register a hero block
acf_register_block(array(
'name' => 'team',
'title' => __('Team Member'),
'description' => __('Block to showcase a member of your team'),
'render_callback' => 'team_render_callback',
'category' => 'formatting',
'icon' => 'admin-users',
'mode' => 'preview',
'keywords' => array( 'team', 'bio', 'employee' ),
));
}
}
/**
* This is the callback that displays the team block
*
* @param array $block The block settings and attributes.
* @param string $content The block content (emtpy string).
* @param bool $is_preview True during AJAX preview.
*/
function team_render_callback( $block, $content = '', $is_preview = false ) {
// create id attribute for specific styling
$id = 'team-' . $block['id'];
// create align class ("alignwide") from block setting ("wide")
$align_class = $block['align'] ? 'align' . $block['align'] : '';
// ACF field variables
$name = get_field('name');
$bio = get_field('bio');
$image = get_field('image');
?>
<div id="<?php echo $id; ?>" class="team <?php echo $align_class; ?>">
<?php if ( $name ): ?>
<h2><?php echo $name; ?></h2>
<?php endif; ?>
<?php if ( $bio ): ?>
<p><?php echo $bio; ?></p>
<?php endif; ?>
<?php if ( $image ): ?>
<img src="<?php echo $image; ?>">
<?php endif; ?>
<?php if( have_rows('socials') ): ?>
<ul class="socials">
<?php while( have_rows('socials') ): the_row();
// vars
$icon = get_sub_field('icon');
$url = get_sub_field('url');
?>
<li class="social-item">
<a target="_blank" href="<?php echo $url; ?>"><?php echo $icon; ?></a>
</li>
<?php endwhile; ?>
</ul>
<?php endif; ?>
</div>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment