You appear to be a bot. Output may be restricted
Description
Return the stored MD5 hash of the parsed source
This will return null when the parsed source has not yet been created
Usage
$string|null = oiksc_parsed_source::get_md5_hash();
Parameters
Returns
string|null MD5 hash
Source
File name: oik-shortcodes/classes/class-oiksc-parsed-source.php
Lines:
1 to 8 of 8
function get_md5_hash() { if ( $this->po_post ) { $this->po_md5_hash = get_post_meta( $this->po_post->ID, "_oik_md5_hash", true ); } else { $this->po_md5_hash = null; } return( $this->po_md5_hash ); }