当前位置: 首页>>代码示例>>PHP>>正文


PHP Social::button_fb_comment方法代码示例

本文整理汇总了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>
开发者ID:nemesis866,项目名称:codeando,代码行数:31,代码来源:inicio_temas.php

示例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();
    }
开发者ID:nemesis866,项目名称:codeando,代码行数:29,代码来源:Page.php


注:本文中的Social::button_fb_comment方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。