Edit copyright in Hesita Child Theme

You Could Also Try This Cheeky Little Trick 🙂 If you just want a quick and easy, no fuss change, you can do this to the Hestia theme copyright area. Just add the following code to your child theme CSS or to the WordPress Customise > CSS area. .copyright a { display: none; } .copyright:before … Read more

How can I insert and display copyright owner field on featured-images, pictures and galleries in articles?

Try this: /** * Adding a “Copyright” field to the media uploader $form_fields array * * @param array $form_fields * @param object $post * * @return array */ function add_copyright_field_to_media_uploader( $form_fields, $post ) { $form_fields[‘copyright_field’] = array( ‘label’ => __(‘Copyright’), ‘value’ => get_post_meta( $post->ID, ‘_custom_copyright’, true ), ‘helps’ => ‘Set a copyright credit for the … Read more