Replace strings when displaying equations
This commit is contained in:
@@ -47,7 +47,11 @@ function sp_manage_posts_custom_column( $column, $post_id ) {
|
|||||||
echo get_post_meta ( $post_id, 'sp_team' ) ? sp_the_posts( $post_id, 'sp_team', '', '<br />', $result, ( empty( $result ) ? ' — ' : ' ' ) ) : '—';
|
echo get_post_meta ( $post_id, 'sp_team' ) ? sp_the_posts( $post_id, 'sp_team', '', '<br />', $result, ( empty( $result ) ? ' — ' : ' ' ) ) : '—';
|
||||||
break;
|
break;
|
||||||
case 'sp_equation':
|
case 'sp_equation':
|
||||||
echo get_post_meta ( $post_id, 'sp_equation', true );
|
echo str_replace(
|
||||||
|
array( '+', '-', '*', '/', '==', '!=', '<', '<=', '>', '>=' ),
|
||||||
|
array( '+', '−', '×', '÷', '=', '≠', '<', '≤', '>', '≥' ),
|
||||||
|
get_post_meta ( $post_id, 'sp_equation', true )
|
||||||
|
);
|
||||||
break;
|
break;
|
||||||
case 'sp_player':
|
case 'sp_player':
|
||||||
echo sp_the_posts( $post_id, 'sp_player' );
|
echo sp_the_posts( $post_id, 'sp_player' );
|
||||||
|
|||||||
Reference in New Issue
Block a user