PluginProbe
JobWP – Job Board Plugin for WordPress | Job Listings, Career Page & Applications / 1.3
JobWP – Job Board Plugin for WordPress | Job Listings, Career Page & Applications v1.3
2.5.0 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 2.4.0 All 33 releases
jobwp / admin / view / partial / single-style.php

single-style.php in JobWP – Job Board Plugin for WordPress | Job Listings, Career Page & Applications 1.3, at admin/view/partial/single-style.php

42 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 exit;
4 }
5
6 //$jobwpSingleStyles = [];
7 foreach ( $jobwpSingleStyles as $option_name => $option_value ) {
8 if ( isset( $jobwpSingleStyles[$option_name] ) ) {
9 ${"" . $option_name} = $option_value;
10 }
11 }
12 ?>
13 <form name="jobwp_single_style_form" role="form" class="form-horizontal" method="post" action="" id="jobwp-single-style-form">
14 <table class="jobwp-single-style-settings-table">
15 <!-- Title -->
16 <tr>
17 <th scope="row" colspan="2">
18 <hr><span><?php _e('Job Title', JOBWP_TXT_DOMAIN); ?></span><hr>
19 </th>
20 </tr>
21 <tr>
22 <th scope="row">
23 <label><?php _e('Font Color', JOBWP_TXT_DOMAIN); ?>:</label>
24 </th>
25 <td>
26 <input class="jobwp-wp-color" type="text" name="jobwp_single_title_font_color" id="jobwp_single_title_font_color" value="<?php esc_attr_e( $jobwp_single_title_font_color ); ?>">
27 <div id="colorpicker"></div>
28 </td>
29 </tr>
30 <tr>
31 <th scope="row">
32 <label><?php _e('Font Size', JOBWP_TXT_DOMAIN); ?>:</label>
33 </th>
34 <td>
35 <input type="number" class="small-text" min="11" max="50" name="jobwp_single_title_font_size" id="jobwp_single_title_font_size" value="<?php esc_attr_e( $jobwp_single_title_font_size ); ?>">
36 <code>px</code>
37 </td>
38 </tr>
39 </table>
40 <hr>
41 <p class="submit"><button id="updateSingleStyles" name="updateSingleStyles" class="button button-primary jobwp-button"><?php _e('Save Settings', JOBWP_TXT_DOMAIN); ?></button></p>
42 </form>