>
', '' ); ?>
post_excerpt manually * in your template before calling the_excerpt(), * add a filter for 'get_the_excerpt' with a priority lower than 10, * or add a filter for 'wp_trim_excerpt' (comparing the first and second parameter, * because a user-supplied excerpt does not get altered in any way by this function). * * An auto-generated excerpt will also have all shortcodes and tags removed. * It is trimmed down to a word-boundary and the default length is 55 words. * For languages in which words are (or can be) * described with single characters (ie. East-Asian languages) * the word-boundary is actually the character. * * ===== Note: ==== * If the current post is an attachment, such as in the attachment.php and image.php template loops, * then the attachment caption is displayed. Captions do not include the "[...]" text. * * @link http://codex.wordpress.org/Function_Reference/the_excerpt */ the_excerpt(); ?>
is used in a post to designate the "cut-off" * point for the post to be excerpted, * the_content() tag will only show the excerpt up to the * quicktag point on non-single/non-permalink post pages. * By design, the_content() tag includes a parameter for formatting the content and look, * which creates a link to "continue reading" the full post. * * Note about : * * 1. No whitespaces are allowed before the "more" in the quicktag. * In other words will not work! * 2. The quicktag will not operate and is ignored in Templates * where just one post is displayed, such as single.php. * 3. Read Customizing the Read More for more details. * * @link http://codex.wordpress.org/Function_Reference/the_content */ the_content(); /** * Function Reference/wp link pages * * Displays page-links for paginated posts (i.e. includes the Quicktag one or more times). * This works in much the same way as link_pages() (deprecated), * the difference being that arguments are given in query string format. * This tag must be within The_Loop. * * @link https://codex.wordpress.org/Function_Reference/wp_link_pages */ wp_link_pages( array( 'before' => '', 'link_before' => '', 'link_after' => '', 'pagelink' => '' . esc_html__( 'Page', 'tokoonline' ) . ' %', 'separator' => ', ', ) ); ?>
', '' ); ?>