You appear to be a bot. Output may be restricted
Description
Theme the GitHub repository field if set
Usage
bw_theme_field_text__oikp_git( $key, $value, $field );
Parameters
- $key
- ( string ) required – the field name ( _oikp_git )
- $value
- ( array ) required – field values array
- $field
- ( array ) required – field definition
Returns
void
Source
File name: oik-plugins/oik-plugins.php
Lines:
1 to 11 of 11
function bw_theme_field_text__oikp_git( $key, $value, $field ) { //bw_trace2(); if ( $value ) { $github = $value[0]; } else { $github = false; } if ( $github ) { alink( "github", "http://github.com/$github", $github ); } }