Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 1.05 KB

reading.md

File metadata and controls

46 lines (35 loc) · 1.05 KB

application.reading

Set application reading options.

Options;

<?php

return [
    'application.reading' => [
        'front-page' => (string|int) 'post'|$page_id,
        'front-page.posts' => (string) $page_id_for_posts,
        'posts-per-page' => (int) $posts_per_page,
        'posts-per-rss' => (string) $posts_per_rss,
        'rss-excerpt' => (string) 'full'|'summary'
        'discourage-search' => (boolean) $discourage_search_engines
    ],
];

Example;

<?php

return [
    'application.reading' => [
        'front-page' => 2,
        'front-page.posts' => 4,
        'posts-per-page' => 20,
        'posts-per-rss' => 20,
        'rss-excerpt' => 'summary',
        'discourage-search' => false,
    ],
];

Further Reading;

Bug?