PHP code example of jeffreyvanrossum / wp-log

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

    

jeffreyvanrossum / wp-log example snippets


$log = new \Jeffreyvr\WPLog\Log('Your log');

$log->setFilePath(wp_upload_dir()['basedir'] . '/logs/your-log-filename.log');

$log->write('Your log message');

$log->write(['foo' => 'bar']);

$log->clear();

$log->interface()->inAdminMenu(slug: 'optional-slug', parent: 'tools.php');

$log->interface->setCapability('manage_options');

$log->interface()->asPluginLink(basename: plugin_basename(__FILE__), slug: 'optional-slug');

$log->setClearLimit(100);

// If you don't want to limit your log, you can pass 0.
$log->setClearLimit(0);