Can anyone please tell me how to add a custom PDF upload option in the POST and PAGE?
Please check the below image for more clarification.
There are several ways to add PDF upload for posts/page. The easiest is via ACF plugin:
Here is an example to display a link to pdf file in your page/post templates:
<?php if( !empty(get_field('pdf_file')) ): ?>
<a href="<?php echo get_field('pdf_file'); ?>"><?php echo __('Download PDF', 'your-domain'); ?></a>
<?php endif; ?>