wordpress - Get custom field value but hide first 19 and last 2 characters -
geeks , code gods, i having issue wordpress code. have added 3 columns dashboard's pages screen. one of displays custom field 'scode' . scode custom field holds cart66 shortcode adds 'add cart' button page assigned to. the shortcode looks this: [add_to_cart item="hd-nl-7010"] each page has different shortcode. every shortcode same length, 31 characters long. however id prefer not show whole shortcode in column, product code *hd-nl-7010* section of code. is possible hide first 19 , last 2 characters. removing [add_to_cart item=" , "] below code added function.php add custom columns pages table: function test_modify_post_table( $column ) { $column['scode'] = 'product code'; $column['price'] = 'price'; $column['product_image'] = 'image'; return $column; } add_filter( 'manage_pages_columns', 'test_modify_post_table' ); function test_modify_po...