Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Set the content archives to full
- add_filter( 'genesis_pre_get_option_content_archive', 'sk_do_full_content' );
- function sk_do_full_content() {
- return 'full';
- }
- // Set content limit
- add_filter( 'genesis_pre_get_option_content_archive_limit', 'sk_set_content_limit' );
- function sk_set_content_limit() {
- return '250';
- }
- // Set allowed HTML tags in Content Limit
- add_filter( 'get_the_content_limit_allowedtags', 'sk_content_limit_custom_tags' );
- function sk_content_limit_custom_tags() {
- return '<p>,<br>,<em>,<i>,<ul>,<ol>,<li>,<a>';
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement