D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ensad
/
dialogos.ensad.edu.pe
/
wp-content
/
plugins
/
advanced-excerpt
/
template
/
Filename :
options.php
back
Copy
<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> <p> <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> </p> <p> <ul class="sub-options"> <li> <label id="no-custom-from-custom-label" for="no-custom-from-custom" <?php echo ( 1 !== $no_custom ) ? 'class="disabled"' : ''; ?>> <input name="no_custom_from_custom" type="checkbox" id="no-custom-from-custom" value="on" <?php echo ( 1 == $no_custom_from_custom ) ? 'checked="checked"' : ''; ?> <?php echo ( 1 !== $no_custom ) ? 'disabled="disabled"' : ''; ?> /> <small><?php _e( "Use the custom excerpt (if disabled the excerpt is generated from the content)", 'advanced-excerpt' ); ?></small> </label> </li> </ul> </p> </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"' : ''; ?> /> <small><?php _e( "Only filter <span class='monospaced'>the_content()</span> when there's no break (<!--more-->) tag in the post content", 'advanced-excerpt' ); ?></small> </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; ?>"> </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>