1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php ! defined( 'ABSPATH' ) && exit(); ?><div class="totalpoll-box-actions"> <?php foreach ( $actions as $actionId => $action ): ?> <a href="<?php echo esc_attr( $action['url'] ); ?>" class="totalpoll-box-action "> <div class="totalpoll-box-action-icon"> <span class="dashicons dashicons-<?php echo esc_attr( $action['icon'] ); ?>"></span> </div> <div class="totalpoll-box-action-name"> <?php echo esc_html( $action['label'] ); ?> </div> </a> <?php endforeach; ?> </div>
|