Perhaps searching can help.
15 | 16 |├── README.md
├── template-section-label.php
├── js
├── admin.js
├── display-json-feeds.js
└── custom.js
├── css
└── admin.css
├── 404.php
├── parts
├── featured-images.php
└── headers.php
├── style.css
├── tribe-events
└── default-template.php
├── includes
├── shortcode-events.php
├── plugin-color-palette.php
└── plugin-headlines.php
├── spine
└── site-navigation.php
└── functions.php
/README.md:
--------------------------------------------------------------------------------
1 | # Carson College of Business WordPress Theme
--------------------------------------------------------------------------------
/template-section-label.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | Perhaps searching can help.
Primary headline to be used for the page.
63 | 64 | 65 | 66 |Subtitle to be used on various views throughout the theme.
67 | 68 | 69 | 70 |Call to action text for use as a guide to this page.
71 | 72 | 73 | 74 | post_type, array( 'page', 'post' ) ) ) { 89 | return; 90 | } 91 | 92 | if ( 'auto-draft' === $post->post_status ) { 93 | return; 94 | } 95 | 96 | if ( ! isset( $_POST['_cob_headlines_nonce'] ) || false === wp_verify_nonce( $_POST['_cob_headlines_nonce'], 'cob-headlines-nonce' ) ) { 97 | return; 98 | } 99 | 100 | if ( isset( $_POST['cob_call_to_action'] ) ) { 101 | update_post_meta( $post_id, $this->call_to_action_meta_key, wp_kses_post( $_POST['cob_call_to_action'] ) ); 102 | } 103 | 104 | if ( isset( $_POST['cob_call_to_action_url'] ) && ! empty( trim( $_POST['cob_call_to_action_url'] ) ) ) { 105 | update_post_meta( $post_id, $this->call_to_action_url_meta_key, esc_url_raw( $_POST['cob_call_to_action_url'] ) ); 106 | } elseif ( ! isset( $_POST['cob_call_to_action_url'] ) || empty( trim( $_POST['cob_call_to_action_url'] ) ) ) { 107 | delete_post_meta( $post_id, $this->call_to_action_url_meta_key ); 108 | } 109 | 110 | if ( isset( $_POST['cob_subtitle'] ) ) { 111 | update_post_meta( $post_id, $this->subtitle_meta_key, wp_kses_post( $_POST['cob_subtitle'] ) ); 112 | } 113 | 114 | if ( isset( $_POST['cob_page_headline'] ) ) { 115 | update_post_meta( $post_id, $this->headline_meta_key, strip_tags( $_POST['cob_page_headline'], '