# learnpress/4.4.2/inc/admin/views/modal-search-items.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.4.2. 31 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.4.2/code/inc/admin/views/modal-search-items.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.4.2/raw/inc/admin/views/modal-search-items.php
- Modified: 2026-07-11T02:31:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.4.2/code/inc/admin/views/modal-search-items.php#L10-L20`.

```php
<script type="text/template" id="learn-press-modal-search-items">
	<div id="modal-search-items" class="learn-press-modal">
		<div class="modal-overlay">

		</div>
		<div class="modal-wrapper">
			<div class="modal-container">
				<header><?php echo wp_kses_post( $this->_options['title'] ); ?></header>
				<article>
					<input type="text" name="search" value="" placeholder="<?php esc_html_e( 'Search items', 'learnpress' ); ?>" autocomplete="off"/>
					<ul class="search-results"></ul>
				</article>
				<footer>
					<div class="search-nav">
					</div>
					<button class="button close"><?php echo wp_kses_post( $this->_options['close_button'] ); ?></button>
					<button class="button button-primary add" style="display:none"><?php echo wp_kses_post( $this->_options['add_button'] ); ?></button>
				</footer>
			</div>
		</div>
	</div>
</script>
<?php

?>
<div id="container-modal-search-items" style="position: relative;z-index: 10000;">
</div>




```
