PHP code example of giantpeach / schnapps
1. Go to this page and download the library: Download giantpeach/schnapps library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
giantpeach / schnapps example snippets
namespace Giantpeach\Blocks\Banner;
use Giantpeach\Blocks\BlockInterface;
class Banner extends Block implements BlockInterface
{
public $slides;
public function __construct($slides)
{
$this->slides = $slides;
}
public static function display()
{
$banner = new Banner(get_field('slides'));
$banner->render();
}
}