# wp-to-buffer/6.2.5/lib/shared/views/about-plugin-card.php

Social Media Auto Poster – Schedule &amp; Publish to Buffer, version 6.2.5. 44 lines.

- Page: https://pluginprobe.com/plugins/wp-to-buffer/6.2.5/code/lib/shared/views/about-plugin-card.php
- Raw: https://pluginprobe.com/plugins/wp-to-buffer/6.2.5/raw/lib/shared/views/about-plugin-card.php
- Modified: 2026-08-19T11:19:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-to-buffer/6.2.5/code/lib/shared/views/about-plugin-card.php#L10-L20`.

```php
<?php
/**
 * Outputs a Plugin Card.
 *
 * @package WPZinc\Shared
 * @author WP Zinc
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
?>
<div class="plugin-card">
	<div class="plugin-card-top">
		<div class="name column-name">
			<h3>
				<a href="<?php echo esc_url( $product['url'] ); ?>" target="_blank">
					<?php echo esc_html( $product['name'] ); ?>
					<img src="<?php echo esc_url( $product['icon'] ); ?>" class="plugin-icon" alt="">
				</a>
			</h3>
		</div>
		<div class="desc column-description">
			<p><?php echo esc_html( $product['description'] ); ?></p>
		</div>
	</div>

	<div class="plugin-card-bottom">
		<div class="vers column-rating">
			<?php esc_html_e( 'from', 'wp-to-buffer' ); ?> $<?php echo esc_html( $product['price'] ); ?>/<?php esc_html_e( 'year', 'wp-to-buffer' ); ?>
		</div>
		<div class="column-updated">
			<?php
			if ( array_key_exists( 'install_url', $product ) && ! empty( $product['install_url'] ) ) {
				?>
				<a href="<?php echo esc_url( $product['install_url'] ); ?>" class="button button-primary" target="_blank"><?php esc_html_e( 'Install', 'wp-to-buffer' ); ?></a>
				<?php
			}
			?>
			<a href="<?php echo esc_url( $product['url'] ); ?>" class="button button-secondary" target="_blank"><?php esc_html_e( 'Learn More', 'wp-to-buffer' ); ?></a>
		</div>
	</div>
</div>
```
