Hi gembongmovies,
Could you explain a bit more what you’re trying to achieve? I’m not sure I understand what you mean.
how to add content such as links or banners in bulk to all pages of my movie?
There’s a couple way to do that, the most likelier to meet your needs would be to use the theme on this. I’ll take a look at it. You theme is FilmPlus, right?
And that’s a theme question, which means you will have to edit your theme. From what I saw of the FilmPlus theme, you’ll need to modify the theloop.php file to add your banner/link wherever you want. Use this syntax to limit this to movies only:
<?php if ( 'movie' == get_post_type() ) : ?>
<div id="your-banner">Hello World!</div>
<?php endif; ?>