403Webshell
Server IP : 93.184.69.11  /  Your IP : 216.73.217.131
Web Server : Apache
System : Linux wa01 5.10.0-45-amd64 #1 SMP Debian 5.10.259-1 (2026-07-02) x86_64
User : web673 ( 1054)
PHP Version : 7.0.33-84+0~20251218.106+debian11~1.gbpe01fd8
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/clients/client310/web673/web/wp-content/plugins/advanced-excerpt/template/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/clients/client310/web673/web/wp-content/plugins/advanced-excerpt/template/options.php
<div class="wrap advanced-excerpt">
	<h2><?php _e( "Advanced Excerpt Options", 'advanced-excerpt' ); ?></h2>
	<?php if ( isset( $_GET['settings-updated'] ) ) : ?>
		<div id="message" class="updated fade"><p><?php _e( 'Options saved.', 'advanced-excerpt' ); ?></p></div>
	<?php endif; ?>

	<div class="advanced-excerpt-container">

		<div class="advanced-excerpt-main">

			<form method="post" action="" autocomplete="off">
			<?php if ( function_exists( 'wp_nonce_field' ) ) wp_nonce_field( 'advanced_excerpt_update_options' ); ?>
				<table class="form-table">
					<tr valign="top">
						<th scope="row">
							<label for="length">
							<?php _e( "Excerpt Length:", 'advanced-excerpt' ); ?>
							</label>
						</th>
						<td>
							<input name="length" type="text" id="length" value="<?php echo $length; ?>" size="2" />
							<select name="length_type">
								<option value="characters"<?php echo ( 'characters' == $length_type ) ? ' selected="selected"' : ''; ?>><?php _e( "Characters", 'advanced-excerpt' ); ?></option>
								<option value="words"<?php echo ( 'words' == $length_type ) ? ' selected="selected"' : ''; ?>><?php _e( "Words", 'advanced-excerpt' ); ?></option>
							</select> 
						</td>
					</tr>
					<tr valign="top">
						<th scope="row">
							<label for="ellipsis">
							<?php _e( "Ellipsis:", 'advanced-excerpt' ); ?>
							</label>
						</th>
						<td>
							<p>
								<input name="ellipsis" type="text" id="ellipsis" value="<?php echo $ellipsis; ?>" size="5" />
								<?php printf( __( '(use <a href="%s" target="_blank">HTML entities</a>)', 'advanced-excerpt' ), 'http://entitycode.com' ); ?>
							</p>
							<p class="description"><?php _e( "Will substitute the part of the post that is omitted in the excerpt.", 'advanced-excerpt' ); ?></p>
						</td>
					</tr>
					<tr valign="top">
						<th scope="row">
							<?php _e( "Finish:", 'advanced-excerpt' ); ?>
						</th>
						<td>
							<p>
								<label for="finish-none">
								<input type="radio" id="finish-none" name="finish" value="exact"<?php echo ( 'exact' == $finish ) ? ' checked="checked"' : ''; ?> />
								<?php _e( "Exact", 'advanced-excerpt' ); ?>
								</label><br />
								<input type="radio" id="finish-exact-2" name="finish" value="exact_w_spaces"<?php echo ( 'exact_w_spaces' == $finish ) ? ' checked="checked"' : ''; ?> />
								<?php _e( "Exact <small>(count spaces as well)</small>", 'advanced-excerpt' ); ?>
								</label><br />
								<label for="finish-word">
								<input type="radio" id="finish-word" name="finish" value="word"<?php echo ( 'word' == $finish ) ? ' checked="checked"' : ''; ?> />
								<?php _e( "Word", 'advanced-excerpt' ); ?>
								</label><br />
								<label for="finish-sentence">
								<input type="radio" id="finish-sentence" name="finish" value="sentence"<?php echo ( 'sentence' == $finish ) ? ' checked="checked"' : ''; ?> />
								<?php _e( "Sentence", 'advanced-excerpt' ); ?>
								</label>
							</p>

							<p class="description"><?php _e( "Prevents cutting a word or sentence at the end of an excerpt. This option can result in (slightly) longer excerpts.", 'advanced-excerpt' ); ?></p>
						</td>
					</tr>
					<tr valign="top">
						<th scope="row">
							<?php _e( "Read More Link:", 'advanced-excerpt' ); ?>
						</th>
						<td>
							
							<label for="add-link">
							<input name="add_link" type="checkbox" id="add-link" value="on" <?php echo ( 1 == $add_link ) ? 'checked="checked"' : ''; ?> />
							<?php _e( "Add read more link to excerpt", 'advanced-excerpt' ); ?>
							</label><br />

							<input name="read_more" type="text" id="read-more" value="<?php echo $read_more; ?>" <?php echo ( 1 !== $add_link ) ? 'disabled="disabled"' : ''; ?> /><br>
							
							<ul class="sub-options">
								<li>
									<label for="link-new-tab">
									<input name="link_new_tab" type="checkbox" id="link-new-tab" value="on" <?php echo ( 1 == $link_new_tab ) ? 'checked="checked"' : ''; ?> />
									<?php _e( "Open read more link in new tab", 'advanced-excerpt' ); ?>
									</label>
								</li>
								<li>
									<label for="link-screen-reader">
									<input name="link_screen_reader" type="checkbox" id="link-screen-reader" value="on" <?php echo ( 1 == $link_screen_reader ) ? 'checked="checked"' : ''; ?> />
									<?php _e( "Screen readers compatibility", 'advanced-excerpt' ); ?> <span class="description"><?php _e( '(appends post title with class .screen-reader-text to the link)', 'advanced-excerpt' ); ?></span>
									</label><br />
								</li>
								<li>
									<label for="link-exclude-length">
									<input name="link_exclude_length" type="checkbox" id="link-exclude-length" value="on" <?php echo ( 1 == $link_exclude_length ) ? 'checked="checked"' : ''; ?> />
									<?php _e( "Remove link if the whole post content shown", 'advanced-excerpt' ); ?>
									</label><br />
								</li>
								<li>
									<label for="link-on-custom-excerpt">
									<input name="link_on_custom_excerpt" type="checkbox" id="link-on-custom-excerpt" value="on" <?php echo ( 1 == $link_on_custom_excerpt ) ? 'checked="checked"' : ''; ?> />
									<?php _e( "Add the link even if a custom excerpt is shown.", 'advanced-excerpt' ); ?>
									</label><br />
								</li>
							</ul>

						</td>
					</tr>
					<tr valign="top">
						<th scope="row">
							<label for="no-custom">
							<?php _e( "No Custom Excerpts:", 'advanced-excerpt' ); ?>
							</label>
						</th>
						<td>
							<label for="no-custom">
							<input name="no_custom" type="checkbox" id="no-custom" value="on" <?php echo ( 1 == $no_custom ) ? 'checked="checked"' : ''; ?> />
							<?php _e( "Generate excerpts even if a post has a custom excerpt attached.", 'advanced-excerpt' ); ?>
							</label>
						</td>
					</tr>
					<tr valign="top">
						<th scope="row">
							<label for="link-excerpt">
							<?php _e( "Link Whole Excerpt:", 'advanced-excerpt' ); ?>
							</label>
						</th>
						<td>
							<label for="link-excerpt">
							<input name="link_excerpt" type="checkbox" id="link-excerpt" value="on" <?php echo ( 1 == $link_excerpt ) ? 'checked="checked"' : ''; ?> />
							<?php _e( "Makes the whole excerpt be a link to the post. If this is enabled it's advised to turn on the Strip Tags option.", 'advanced-excerpt' ); ?>
							</label>
						</td>
					</tr>
					<tr valign="top">
						<th scope="row">
							<label for="no-shortcode">
							<?php _e( "Strip Shortcodes:", 'advanced-excerpt' ); ?>
							</label>
						</th>
						<td>
							<label for="no-shortcode">
							<input name="no_shortcode" type="checkbox" id="no-shortcode" value="on" <?php echo ( 1 == $no_shortcode ) ? 'checked="checked"' : ''; ?> />
							<?php _e( "Remove shortcodes from the excerpt. <em>(recommended)</em>", 'advanced-excerpt' ); ?>
							</label>
						</td>
					</tr>
					<tr valign="top">
						<th scope="row">
							<?php _e( "Filter:", 'advanced-excerpt' ); ?>
						</th>
						<td>
							<p>
								<label for="the-excerpt">
								<input name="the_excerpt" type="checkbox" id="the-excerpt" value="on" <?php echo ( 1 == $the_excerpt ) ? 'checked="checked"' : ''; ?> />
								<span class='monospaced'>the_excerpt()</span>
								</label><br />
								<label for="the-content">
								<input name="the_content" type="checkbox" id="the-content" value="on" <?php echo ( 1 == $the_content ) ? 'checked="checked"' : ''; ?> />
								<span class='monospaced'>the_content()</span>
								</label>
							</p>
							<ul class="sub-options">
								<li>
									<label id="the-content-no-break-label" for="the-content-no-break" <?php echo ( 1 !== $the_content ) ? 'class="disabled"' : ''; ?>>
									<input name="the_content_no_break" type="checkbox" id="the-content-no-break" value="on" <?php echo ( 1 == $the_content_no_break && 1 == $the_content ) ? 'checked="checked"' : ''; ?> <?php echo ( 1 !== $the_content ) ? 'disabled="disabled"' : ''; ?> />
									<?php _e( "Only filter <span class='monospaced'>the_content()</span> when there's no break (&lt;!--more--&gt;) tag in the post content", 'advanced-excerpt' ); ?>
									</label>
								</li>
							</ul>
							
							<p class="description">
								<?php _e( 'Themes may use <code>the_excerpt()</code> for some pages (e.g. search results) and <code>the_content()</code> on others (e.g. blog archives). Depending on your theme and what pages you want this plugin to affect, you may need to adjust these settings.', 'advanced-excerpt' ); ?>
							</p>
						</td>
					</tr>
					<tr valign="top">
						<th scope="row">
							<?php _e( "Disable On:", 'advanced-excerpt' ); ?>
						</th>
						<td>
							<p>
								<?php foreach ( $exclude_pages_list as $key => $label ) : 
									$key_dashed = str_replace( '_', '-', $key ); ?>
									<label for="<?php echo $key_dashed; ?>">
									<input name="exclude_pages[]" type="checkbox" id="<?php echo $key_dashed; ?>" value="<?php echo $key; ?>" <?php echo ( in_array( $key, $exclude_pages ) ) ? 'checked="checked"' : ''; ?> />
									<?php echo $label; ?>
									</label><br />
								<?php endforeach; ?>
							<p>

							<p class="description">
								<?php _e( 'Disables excerpt filtering for certain page types.', 'advanced-excerpt' ); ?>
							</p>
						</td>
					</tr>
					<tr valign="top">
						<th scope="row">
							<?php _e( "Strip Tags:", 'advanced-excerpt' ); ?>
						</th>
						<td>
							<table id="tags-table">
								<tr>
									<td colspan="<?php echo $tag_cols; ?>">
										<p>
											<label for="dont-remove-any-tags">
											<input name="allowed_tags_option" type="radio" id="dont-remove-any-tags" value="dont_remove_any" <?php echo ( 'dont_remove_any' == $allowed_tags_option ) ? 'checked="checked"' : ''; ?> />
											<?php _e( "Don't remove any tags", 'advanced-excerpt' ); ?>
											</label><br />
											<label for="remove-all-tags-except">
											<input name="allowed_tags_option" type="radio" id="remove-all-tags-except" value="remove_all_tags_except" <?php echo ( 'remove_all_tags_except' == $allowed_tags_option ) ? 'checked="checked"' : ''; ?> />
											<?php _e( "Remove all tags except the following", 'advanced-excerpt' ); ?>
											</label>
										</p>
									</td>
								</tr>
								<?php
								$i = 0;
								foreach ( $tag_list as $tag ) :
									if ( 0 == $i % $tag_cols ) : ?>
									<tr<?php echo ( 'dont_remove_any' == $allowed_tags_option ) ? ' style="display: none;"' : '' ?>>
									<?php endif; $i++; ?>
										<td>
											<label for="<?php echo 'ae-' . $tag; ?>">
											<input name="allowed_tags[]" type="checkbox" id="<?php echo 'ae-' . $tag; ?>" value="<?php echo $tag; ?>" <?php echo ( in_array( $tag, $allowed_tags ) ) ? 'checked="checked" ' : ''; ?> />
											<code><?php echo $tag; ?></code>
											</label>
										</td>
										<?php
										if ( 0 == $i % $tag_cols ):
											$i = 0;
										echo '</tr>';
										endif;
										endforeach;
										if ( 0 != $i % $tag_cols ): ?>
								 			<td colspan="<?php echo $tag_cols - $i; ?>">&nbsp;</td>
									</tr>
									<?php endif; ?>
							</table>

							<div class="tags-control"<?php echo ( 'dont_remove_any' == $allowed_tags_option ) ? ' style="display: none;"' : '' ?>>
								<a href="" id="select-all"><?php _e( "Select all", 'advanced-excerpt' ); ?></a> / <a href="" id="select-none"><?php _e( "Select none", 'advanced-excerpt' ); ?></a><br />
								<?php _e( "More tags", 'advanced-excerpt' ); ?>
								<select name="more_tags" id="more-tags">
								<?php foreach ( array_diff( $this->options_all_tags, $this->options_basic_tags ) as $tag ) : ?>
									<option value="<?php echo $tag; ?>"><?php echo $tag; ?></option>
								<?php endforeach; ?>
								</select>

								<input type="button" name="add_tag" id="add-tag" class="button" value="<?php _e( "Add tag", 'advanced-excerpt' ); ?>" />
							</div>

						</td>
					</tr>
				</table>
				<p class="submit"><input type="submit" name="Submit" class="button-primary" value="<?php _e( "Save Changes", 'advanced-excerpt' ); ?>" /></p>
			</form>

		</div>

		<?php require_once $this->plugin_dir_path . 'template/sidebar.php'; ?>

	</div>

</div>

Youez - 2016 - github.com/yon3zu
LinuXploit