1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
namespace AutomateWoo;
defined( 'ABSPATH' ) || exit;
/** * Variable_Abstract_Meta class. */ abstract class Variable_Abstract_Meta extends Variable {
/** * Load admin details. */ public function load_admin_details() { $this->add_parameter_text_field( 'key', __( 'The meta_key of the field you would like to display.', 'automatewoo' ), true ); } }
|