# ultimate-post/1.0.6/classes/template-without-title.php

Post Grid Gutenberg Blocks – PostX, version 1.0.6. 16 lines.

- Page: https://pluginprobe.com/plugins/ultimate-post/1.0.6/code/classes/template-without-title.php
- Raw: https://pluginprobe.com/plugins/ultimate-post/1.0.6/raw/classes/template-without-title.php
- Modified: 2020-01-27T15:43:50+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/ultimate-post/1.0.6/code/classes/template-without-title.php#L10-L20`.

```php
<?php
defined('ABSPATH') || exit;

get_header();
$width = get_option( 'ultp_options' );
$width = isset($width['container_width']) ? $width['container_width'] : '1140';
?>
<div class="ultp-template-container" style="margin:0 auto;max-width:<?php echo $width;?>px; padding: 0 15px">
	<?php
		while ( have_posts() ) : the_post();
			the_content();
		endwhile;
	?>
<div>
<?php
get_footer();
```
