# wp-to-buffer/6.2.1/lib/shared/views/about.php

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

- Page: https://pluginprobe.com/plugins/wp-to-buffer/6.2.1/code/lib/shared/views/about.php
- Raw: https://pluginprobe.com/plugins/wp-to-buffer/6.2.1/raw/lib/shared/views/about.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.1/code/lib/shared/views/about.php#L10-L20`.

```php
<?php
/**
 * Outputs the About section, comprising of other Plugins.
 *
 * @package WPZinc\Shared
 * @author WP Zinc
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
?>
<div class="wpzinc-about">
	<h3><?php esc_html_e( 'Our Products', 'wp-to-buffer' ); ?></h3>

	<p class="description">
		<?php esc_html_e( 'If you found this Plugin useful, you may also like our other products.', 'wp-to-buffer' ); ?>
	</p>

	<br />

	<div class="plugin-install-php">
		<?php
		foreach ( $products as $product ) {
			include $this->dashboard_folder . '/views/about-plugin-card.php';
		}
		?>
	</div>
</div>


```
