本文整理汇总了PHP中Social::button_fb_comment方法的典型用法代码示例。如果您正苦于以下问题:PHP Social::button_fb_comment方法的具体用法?PHP Social::button_fb_comment怎么用?PHP Social::button_fb_comment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Social
的用法示例。
在下文中一共展示了Social::button_fb_comment方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
echo $autor_google;
?>
" data-theme="dark" data-layout="landscape" data-rel="author"></div><?php
}
// Si no esta vacio el ID de twitter mostramos
if (!empty($autor_twitter)) {
?>
<div>
<a href="https://twitter.com/<?php
echo $autor_twitter;
?>
" class="twitter-follow-button" data-show-count="false" data-lang="es" data-size="large">Seguir a @paulo_866</a>
</div><?php
}
?>
</div>
</div>
<div class="center">
<h2>Comentarios</h2>
<?php
// Incluimos comentarios con ayuda de facebook
$social->button_fb_comment();
?>
</div>
<div id="foro">
<p><a href="http://programacionazteca.mx/foro/inicio/">Tienes dudas? puedes pedir ayuda en nuestro foro.</a></p>
<p><img src="/img/forum.png"></p>
</div>
</div>
示例2: display_content
public function display_content()
{
?>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Add your site or application content here -->
<p>Hello world! This is HTML5 Boilerplate.</p>
<?php
// Mostramos el boton de login de facebook
self::login_fb();
// ######## Cargamos la clase social para los plugins relacionados con redes sociales #########
$social = new Social();
// Mostramos el boton de gplus
$social->button_gplus();
// Mostramos el boton de twitter
$social->button_twitter_share();
// Mostramos el boton de twitter seguir
$social->button_twitter_follow();
// Mostramos el boton de facebook like
$social->button_fb_like();
// Mostramos el boton de facebook share
$social->button_fb_follow();
// Mostramos area de comentarios para facebook
$social->button_fb_comment();
// Mostramos area para like a paginas
$social->button_fb_page_like();
}