1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Copyright © 2016 Ihor Vansach (ihor@magefan.com). All rights reserved.
- * See LICENSE.txt for license details (http://opensource.org/licenses/osl-3.0.php).
- *
- * Glory to Ukraine! Glory to the heroes!
- */
- namespace Magefan\Blog\Block\Amp\Ldjson;
- /**
- * Blog post list ldJson block
- */
- class Post extends \Magefan\Blog\Block\Post\View\Richsnippets
- {
- /**
- * Retrieve page structure structure data in JSON
- *
- * @return string
- */
- public function getJson()
- {
- $json = parent::getOptions();
- return str_replace('\/', '/', json_encode($json));
- }
- }
|