| 1 |
<?php |
| 2 |
/** |
| 3 |
* Outputs the Member Content Login block when the subscriber is logged in, |
| 4 |
* displaying a message and a button to log out. |
| 5 |
* |
| 6 |
* @package ConvertKit |
| 7 |
* @author ConvertKit |
| 8 |
*/ |
| 9 |
|
| 10 |
?> |
| 11 |
<div id="convertkit-restrict-content" class="convertkit-login <?php echo esc_attr( implode( ' ', map_deep( $css_classes, 'sanitize_html_class' ) ) ); ?>" style="<?php echo esc_attr( implode( ';', $css_styles ) ); ?>"> |
| 12 |
<div class="convertkit-restrict-content-actions"> |
| 13 |
<p> |
| 14 |
<?php echo esc_html( $atts['logged_in_text'] ); ?> |
| 15 |
</p> |
| 16 |
<p> |
| 17 |
<a href="<?php echo esc_url( $logout_url ); ?>" class="convertkit-restrict-content-logout wp-block-button__link wp-element-button"><?php echo esc_html( $atts['logout_button_label'] ); ?></a> |
| 18 |
</p> |
| 19 |
</div> |
| 20 |
</div> |
| 21 |
|