header.php 二处,分别为博客名字

<?php bloginfo( 'name' ); ?>

single-bookmovie.php 中部80行左右 修改按钮颜色及顺序

<div class="tool-go mt-4">
										<?php if (!empty(get_post_meta(get_the_ID(), 'url', true))): ?>
										<a 
											href="<?php echo lh_go_url(get_the_ID()) ?>" title="<?php the_title() ?>" target="_blank"
											class="lh-go-url btn-watch btn btn-light btn-danger mr-2">
											<?php _e('Watch', 'lighthouse') ?><small class="font-theme text-xs">(<span class="go-count"><?php echo $go_count ?></span>)</small>
										</a>
										<?php endif; ?>

										<a 
											href="javascript:;" data-action="<?php echo $is_marked ? 'unmark' : 'mark' ?>" data-id="<?php the_ID(); ?>"
											class="<?php echo $is_marked ? 'current' : ''; ?> btn-mark btn btn-light mr-2"><?php _e('Watch(Read) Later', 'lighthouse') ?> <small class="font-theme text-xs">(<span class="mark-count"><?php echo $mark_count ?></span>)</small></a>
										<a 
											href="javascript:;" data-action="<?php echo $is_read ? 'unread' : 'read' ?>" data-id="<?php the_ID(); ?>"
											class="<?php echo $is_read ? 'current' : ''; ?> btn-read btn btn-light mr-2"><?php _e('Watched(Read)', 'lighthouse') ?> <small class="font-theme text-xs">(<span class="read-count"><?php echo $read_count ?></span>)</small></a>
										
</div>

single-website.php 中部51行,修改按钮颜色

<a href="<?php echo lh_go_url(get_the_ID()) ?>" title="<?php the_title() ?>" target="_blank" class="lh-go-url btn btn-light btn-arrow btn-danger mr-2"><span><?php echo $btn_title ?> <i class="iconfont icon-forward-"></i></span></a>