PHP code example of dexterhd / yiidisquswidget

1. Go to this page and download the library: Download dexterhd/yiidisquswidget 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/ */

    

dexterhd / yiidisquswidget example snippets


// DISQUS_SHORTNAME - You disqus_shortname from DISQUS.
$this->widget('ext.YiiDisqusWidget.YiiDisqusWidget',array('shortname'=>'DISQUS_SHORTNAME'));

$this->widget(
    'ext.YiiDisqusWidget.YiiDisqusWidget',
    array(
        'shortname' => 'DISQUS_SHORTNAME',
        'identifier' => 'DISQUS_IDENTIFIER',
        'title' => 'DISQUS_TITLE',
        'url' => 'DISQUS_URL',
        'category_id' => 'DISQUS_CATEGORY_ID',
    )
);