Oh yes! If I get you correctly, you are asking if you can you set the title of the post to appear as the water marker? If that is what you’re asking, yes it is very possible! You can do this using a custom hook like so:
add_filter( 'watermark_my_images_text', 'watermark_text_options', 10, 1 );
function watermark_text_options( $text_options ): array {
return wp_parse_args(
[
'label' => get_the_title()
],
$text_options
);
}
Let me know if this works for you and pls don’t hesitate to drop a review if you find this useful. Thanks.
-
This reply was modified 1 month, 3 weeks ago by badasswp.
-
This reply was modified 1 month, 3 weeks ago by badasswp.
-
This reply was modified 1 month, 3 weeks ago by badasswp.